/* styles.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    overflow: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.background {
    width: 100%;
    height: 100%;
    background: url('assets/bg.png') no-repeat center center;
    background-size: 100% auto;
    position: relative;
}

.background2 {
    width: 100%;
    height: 100%;
    background: url('assets/bg2.png') no-repeat center center;
    background-size: 100% auto;
    position: relative;
}

/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
    .background {
        background-image: url('assets/Bg_mobile.png');
		height: 100vh; /* Ensure it still covers full viewport height on mobile */
        background-size: cover; /* Keeps the image scaled properly */
        background-position: center; /* Center the image */
    }
	.background2 {
        background-image: url('assets/Bg_Mobile2.png');
		height: 100vh; /* Ensure it still covers full viewport height on mobile */
        background-size: cover; /* Keeps the image scaled properly */
        background-position: center; /* Center the image */
    }
    .login-form {
        left: 13%;
    }
    .otp-inputs {
        display: flex;
        justify-content: space-between;
        gap: 6px;
        margin: 10px 0;
    }
    .otp-inputs input {
        width: 30px;
        height: 45px;
        font-size: 16px;
    }

    .message-box {
        width: 135%;
		text-align: center; /* Ensures the text aligns properly */
    }
    /* Congratulations text styling */
    .message-box h1 {
		
        font-family: 'DM Serif Display', serif;
        font-size: 2rem;
        font-weight: 300;
        line-height: 112.42px;
        text-align: center;
        color: #ff4500; /* Inner text color */
        -webkit-text-stroke: 2px #FFF3CF; /* Font border color and thickness */
        text-stroke: 2px #FFF3CF; /* Fallback for browsers that support text-stroke */
    }
    .avatar-list {
        width: 95vw;
    }
	.logo {
    display: none;
    }
	.overlay{
		
    display: none;
	}

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(35deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)); /* Dark gradient overlay */
}
.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(35deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)); /* Dark gradient overlay */
}



.logo {
    position: absolute;
    top: 40%;
    left: 15%;
    z-index: 2;
}



.login-form {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translate(-10%, -50%);
    width: 450px;
    max-width: 90%;
    background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent dark background */
    padding: 40px;
    color: white;
    border-radius: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

/* Styling for the checkbox section */
.options {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #999;
}

.options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Customize the checkbox */
.options input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ff4500;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.options input[type="checkbox"]:checked {
    background-color: #ff4500; /* Filled color for checked */
    border-color: #ff4500;
    border: 1px solid #ff4500;
    border-radius: 3px;
    
}

.options input[type="checkbox"]:checked::before {
    content: '✔';
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff;
    font-size: 18px;
    line-height: 14px;
}

.options a {
    color: #ff4500;
    text-decoration: none;
}


button {
    width: 100%;
    padding: 12px;
    background-color: #ff4500;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.or {
    text-align: center;
    margin: 10px 0;
    color: #999;
}

.social-login {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.social-login button {
    width: 48%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #999;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    color: white;
}

.apple {
    background-color: #000;
}

.google {
    background-color: #4285F4;
    color: white;
}

.forgot-password {
    display: block;
    text-align: end;
    margin-top: 10px;
    color: #999;
    text-decoration: none;
}
.register-new {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #999;
    text-decoration: none;
}

footer {
    position: absolute;
    bottom: 3%;
    right: 3%;
    color: #F2AC30;
    z-index: 2;
}

footer p {
    font-size: 14px;
    display: flex;
    align-items: center;

}
footer img {
    width: 50px;
    padding-top: 10px;
}


.form-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #ff4500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 20px auto;
}

.camera-icon {
    font-size: 24px;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.name-fields {
    display: flex;
    gap: 8px;
}

.name-fields input {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"],
.phone-field input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
}

.phone-field {
    display: flex;
    gap: 8px;
    align-items: center;
}

.country-code {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
}

.password-field {
    display: flex;
    align-items: center;
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #ff4500;
}

.submit-btn {
    background-color: #ff4500;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.otp-container {
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
}

.otp-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.otp-container p {
    font-size: 14px;
    margin: 8px 0;
    color: #ccc;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
}

.otp-inputs input {
    max-width: 50px;
    max-height: 60px;
    font-size: 24px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
}
/* Hide increment/decrement buttons in number input */
input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    margin: 0;
}

.submit-otp {
    background-color: rgb(76, 160, 255);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 900;
    font-size: 25px;
    margin: 10px 0;
    border-radius: 8px;
    width: 50px;
    height: 60px;
}

.resend-text {
    font-size: 12px;
    color: #ccc;
}

.timer {
    color: #ff4500;
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.keypad button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    position: relative;
}

.keypad button span {
    font-size: 10px;
    color: #666;
    position: absolute;
    bottom: 5px;
    left: 5px;
}

.keypad .backspace {
    font-size: 20px;
    background: transparent;
    color: #999;
    border: 1px solid #999;
}

.message-box {
    position: fixed; /* Change to fixed for better centering */
    top: 50%; /* 50% from the top */
    left: 50%; /* 50% from the left */
    transform: translate(-50%, -50%); /* Adjust the position to truly center */
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 60px;
    border-radius: 10px;
    max-width: 700px;
    z-index: 2;
}


/* Import the DM Serif Display font */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

/* Congratulations text styling */
.message-box h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 112.42px;
    text-align: center;
    color: #ff4500; /* Inner text color */
    -webkit-text-stroke: 2px #FFF3CF; /* Font border color and thickness */
    text-stroke: 2px #FFF3CF; /* Fallback for browsers that support text-stroke */
}


.message-box .main-message {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.message-box .highlight-message {
    font-size: 18px;
    color: #ffcc00;
    margin-bottom: 10px;
    font-weight: bold;
}


.congo-logo {
    position: absolute;
    top: 5%;
    left: 30%;
    z-index: 2;
}
.create-avatar1{
    padding: 10px;
    text-decoration: none;
    width: 130px;
    border-radius: 10px;
    background-color: #ff4500;
    color: white;
}


.dashboard {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: transparent; /* Semi-transparent background */
    border-radius: 10px;
    width: 100%;
}

.avatar-creator {
    display: flex;
    flex-direction: column;
    background-color: transparent; /* Semi-transparent background */
    border-radius: 10px;
    width: 100%;
}

.avatar-view-section {
    /* position: absolute; */
    z-index: 2;
    width: 100%;
}

.profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.profile-section img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile-info {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    color: #fff;
}


/* Styles for the circular profile container */
.profile-pic-container {
    position: relative;
    width: 80px; /* Set the container size */
    height: 80px;
    border-radius: 50%; /* Make it circular */
    overflow: hidden; /* Hide any overflow to keep image within the circle */
    background-color: #ccc; /* Placeholder background color */
}

.camera-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#profileImage {
    width: 100%; /* Make image cover the container */
    height: 100%;
    object-fit: cover; /* Ensure image covers container without stretching */
}
.avatar-list-header {
    position: absolute;
    display: flex;
    width: 100%;
    top: 80px;
    color: #fff;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;

}

.avatar-area{
    position: absolute;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin-top: 70px;
    padding: 0 20px;
}


.avatar-list {
    max-width: 750px;
    overflow: auto;
    height: 100vw;
    height: 500px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent dark background */
    padding: 30px 20px;/* styles.css */

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }
    
    body, html {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #121212;
        overflow: hidden;
    }
    
    .container {
        width: 100vw;
        height: 100vh;
        position: relative;
    }
    
    .background {
        width: 100%;
        height: 100%;
        background: url('assets/bg.png') no-repeat center center;
        background-size: 100% auto;
        position: relative;
    }
    .background2 {
    width: 100%;
    height: 100%;
    background: url('assets/bg.png') no-repeat center center;
    background-size: 100% auto;
    position: relative;
    }
    
    /* Media query for mobile devices */
    @media only screen and (max-width: 768px) {
        .background {
			background-image: url('assets/Bg_mobile.png');
            height: 100vh; /* Ensure it still covers full viewport height on mobile */
            background-size: cover; /* Keeps the image scaled properly */
            background-position: center; /* Center the image */
        }
	.background2 {
        background-image: url('assets/Bg_Mobile2.png');
		height: 100vh; /* Ensure it still covers full viewport height on mobile */
        background-size: cover; /* Keeps the image scaled properly */
        background-position: center; /* Center the image */
    }
        .login-form {
            left: 13%;
        }
        .otp-inputs {
            display: flex;
            justify-content: space-between;
            gap: 6px;
            margin: 10px 0;
        }
        .otp-inputs input {
            width: 30px;
            height: 45px;
            font-size: 16px;
        }
    
        .message-box {
            width: 100%;
			text-align: center; /* Ensures the text aligns properly */
        }
        /* Congratulations text styling */
        .message-box h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            font-weight: 400;
            line-height: 112.42px;
            text-align: center;
            color: #ff4500; /* Inner text color */
            -webkit-text-stroke: 2px #FFF3CF; /* Font border color and thickness */
            text-stroke: 2px #FFF3CF; /* Fallback for browsers that support text-stroke */
        }
        .avatar-list {
            width: 95vw;
        }
    
    }
    
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(35deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)); /* Dark gradient overlay */
    }
    
    
    .logo {
        position: absolute;
        top: 40%;
        left: 15%;
        z-index: 2;
    }
    
    
    .login-form {
        position: absolute;
        top: 50%;
        right: 7%;
        transform: translate(-10%, -50%);
        width: 450px;
        max-width: 90%;
        background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent dark background */
        padding: 40px;
        color: white;
        border-radius: 10px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .login-form h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .login-form input {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
    
    /* Styling for the checkbox section */
    .options {
        display: flex;
        flex-direction: column;
        font-size: 16px;
        color: #999;
    }
    
    .options label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    
    /* Customize the checkbox */
    .options input[type="checkbox"] {
        appearance: none;
        width: 16px;
        height: 16px;
        border: 1px solid #ff4500;
        border-radius: 3px;
        position: relative;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .options input[type="checkbox"]:checked {
        background-color: #ff4500; /* Filled color for checked */
        border-color: #ff4500;
        border: 1px solid #ff4500;
        border-radius: 3px;
        
    }
    
    .options input[type="checkbox"]:checked::before {
        content: '✔';
        position: absolute;
        top: 5px;
        left: 5px;
        color: #fff;
        font-size: 18px;
        line-height: 14px;
    }
    
    .options a {
        color: #ff4500;
        text-decoration: none;
    }
    
    
    button {
        width: 100%;
        padding: 12px;
        background-color: #ff4500;
        color: white;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 15px;
    }
    
    .or {
        text-align: center;
        margin: 10px 0;
        color: #999;
    }
    
    .social-login {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .social-login button {
        width: 48%;
        padding: 12px;
        border-radius: 5px;
        border: 1px solid #999;
        font-size: 16px;
        cursor: pointer;
        background-color: transparent;
        color: white;
    }
    
    .apple {
        background-color: #000;
    }
    
    .google {
        background-color: #4285F4;
        color: white;
    }
    
    .forgot-password {
        display: block;
        text-align: end;
        margin-top: 10px;
        color: #999;
        text-decoration: none;
    }
    .register-new {
        display: block;
        text-align: center;
        margin-top: 20px;
        color: #999;
        text-decoration: none;
    }
    
    footer {
        position: absolute;
        bottom: 3%;
        right: 3%;
        color: #F2AC30;
        z-index: 2;
    }
    
    footer p {
        font-size: 14px;
        display: flex;
        align-items: center;
    
    }
    footer img {
        width: 50px;
        padding-top: 10px;
    }
    
    
    .form-container {
        width: 100%;
        max-width: 400px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7); /* Dark overlay */
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-pic {
        width: 80px;
        height: 80px;
        background-color: #fff;
        color: #ff4500;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 20px auto;
    }
    
    .camera-icon {
        font-size: 24px;
    }
    
    .register-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .name-fields {
        display: flex;
        gap: 8px;
    }
    
    .name-fields input {
        width: 100%;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    .phone-field input {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        background-color: #fff;
    }
    
    .phone-field {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    
    .country-code {
        padding: 10px;
        border: none;
        border-radius: 5px;
        background-color: #fff;
    }
    
    .password-field {
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .toggle-password {
        position: absolute;
        right: 10px;
        cursor: pointer;
        color: #ff4500;
    }
    
    .submit-btn {
        background-color: #ff4500;
        color: #fff;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }
    
    .otp-container {
        width: 100%;
        max-width: 300px;
        margin: auto;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        text-align: center;
        color: #fff;
        font-family: Arial, sans-serif;
    }
    
    .otp-container h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .otp-container p {
        font-size: 14px;
        margin: 8px 0;
        color: #ccc;
    }
    
    .otp-inputs {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin: 20px 0;
    }
    
    .otp-inputs input {
        max-width: 50px;
        max-height: 60px;
        font-size: 24px;
        text-align: center;
        border-radius: 8px;
        border: 1px solid #ccc;
        background-color: #fff;
        color: #000;
    }
    /* Hide increment/decrement buttons in number input */
    input[type="number"] {
        -moz-appearance: textfield; /* Firefox */
    }
    
    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none; /* Chrome, Safari, Edge */
        margin: 0;
    }
    
    .submit-otp {
        background-color: rgb(76, 160, 255);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-weight: 900;
        font-size: 25px;
        margin: 10px 0;
        border-radius: 8px;
        width: 50px;
        height: 60px;
    }
    
    .resend-text {
        font-size: 12px;
        color: #ccc;
    }
    
    .timer {
        color: #ff4500;
    }
    
    .keypad {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-top: 10px;
    }
    
    .keypad button {
        width: 100%;
        padding: 15px;
        font-size: 18px;
        background-color: #fff;
        border: none;
        border-radius: 8px;
        color: #000;
        cursor: pointer;
        position: relative;
    }
    
    .keypad button span {
        font-size: 10px;
        color: #666;
        position: absolute;
        bottom: 5px;
        left: 5px;
    }
    
    .keypad .backspace {
        font-size: 20px;
        background: transparent;
        color: #999;
        border: 1px solid #999;
    }
    
    .message-box {
        position: fixed; /* Change to fixed for better centering */
        top: 50%; /* 50% from the top */
        left: 50%; /* 50% from the left */
        transform: translate(-50%, -50%); /* Adjust the position to truly center */
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        text-align: center;
        padding: 60px;
        border-radius: 10px;
        max-width: 700px;
        z-index: 2;
    }
    
    
    /* Import the DM Serif Display font */
    @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
    
    /* Congratulations text styling */
    .message-box h1 {
        font-family: 'DM Serif Display', serif;
        font-size: 4rem;
        font-weight: 400;
        line-height: 112.42px;
        text-align: center;
        color: #ff4500; /* Inner text color */
        -webkit-text-stroke: 2px #FFF3CF; /* Font border color and thickness */
        text-stroke: 2px #FFF3CF; /* Fallback for browsers that support text-stroke */
    }
    
    
    .message-box .main-message {
        font-size: 18px;
        color: #fff;
        margin-bottom: 10px;
    }
    
    .message-box .highlight-message {
        font-size: 18px;
        color: #ffcc00;
        margin-bottom: 10px;
        font-weight: bold;
    }
    
    
    .congo-logo {
        position: absolute;
        top: 5%;
        left: 30%;
        z-index: 2;
    }
    .create-avatar1{
        padding: 10px;
        text-decoration: none;
        width: 130px;
        border-radius: 10px;
        background-color: #ff4500;
        color: white;
    }
    
    
    .dashboard {
        display: flex;
        gap: 20px;
        padding: 20px;
        background-color: transparent; /* Semi-transparent background */
        border-radius: 10px;
        width: 100%;
    }
    
    .avatar-creator {
        display: flex;
        flex-direction: column;
        background-color: transparent; /* Semi-transparent background */
        border-radius: 10px;
        width: 100%;
    }
    
    .avatar-view-section {
        /* position: absolute; */
        z-index: 2;
        width: 100%;
    }
    
    .profile-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        z-index: 10;
    }
    
    .profile-section img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-bottom: 10px;
    }
    
    .profile-info {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 16px;
        color: #fff;
    }
    
    
    /* Styles for the circular profile container */
    .profile-pic-container {
        position: relative;
        width: 80px; /* Set the container size */
        height: 80px;
        border-radius: 50%; /* Make it circular */
        overflow: hidden; /* Hide any overflow to keep image within the circle */
        background-color: #ccc; /* Placeholder background color */
    }
    
    .camera-icon{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    #profileImage {
        width: 100%; /* Make image cover the container */
        height: 100%;
        object-fit: cover; /* Ensure image covers container without stretching */
    }
    .avatar-list-header {
        position: absolute;
        display: flex;
        width: 100%;
        top: 80px;
        color: #fff;
        padding: 10px 20px;
        justify-content: space-between;
        align-items: center;
    
    }
    
    .avatar-area{
        position: absolute;
        z-index: 20;
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
        margin-top: 70px;
        padding: 0 20px;
    }
    
    
    .avatar-list {
        max-width: 750px;
        overflow: auto;
        height: 100vw;
        height: 500px;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent dark background */
        padding: 30px 20px;
        color: white;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    
    
    .avatar-preview {
        height: 30vw;
        width: 50vw;
        /* border-radius: 10px;
        border: 1px solid #fff; */
    }
    
    .avatar-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #f4f4f47b;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    
    .avatar-item p {
        width: 70%;
        overflow: hidden;
        margin-top: 4px;
    }
    
    .avatar-item button {
        background-color: #ff4500;
        width: 100px;
        color: #fff;
        border: none;
        border-radius: 3px;
        padding: 8px;
        margin-left: 5px;
        margin-bottom: 10px;
        cursor: pointer;
    }
    
    .create-avatar {
        background-color: #ff4500;
        width: 130px;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        color: #fff;
        align-items: center;
        text-decoration: none;
        height: 40px;
    }
    
    .avatar-view {
        display: flex;
        padding: 0 20px;
        justify-content: center;
        align-items: center;
        height: 90vh;
        text-align: center;
    }
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}


.avatar-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f4f4f47b;
    border-radius: 5px;
    margin-bottom: 10px;
}


.avatar-item p {
    width: 70%;
    overflow: hidden;
    margin-top: 4px;
}

.avatar-item button {
    background-color: #ff4500;
    width: 100px;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px;
    margin-left: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.create-avatar {
    background-color: #ff4500;
    width: 130px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
    text-decoration: none;
    height: 40px;
}

.avatar-view {
    display: flex;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    height: 90vh;
    text-align: center;
}