.custom-account-setting {
    max-width: 700px;
    margin: 0 15px;
    font-family: 'Poppins', sans-serif;
}

.custom-account-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

#custom_account_address {width: 50% !important;}

.custom-account-avatar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.custom-account-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 10px;
}

.custom-account-avatar-input {
    display: none;
}

.custom-account-avatar button {
    margin-left: 10px;
    border: 0px;
}

.custom-account-field {
    margin-bottom: 20px;
}

.custom-account-field label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #78716C;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.custom-account-field input,
.custom-account-field textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #E2E1DF;
    border-radius: 8px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000000;
    height: 50px;
}

.custom-account-field textarea {
    height: 200px;
    
}

.custom-account-submit {
    background-color: #FFB61D;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    display: block;
    width: 40%;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}

.inline-fields {
    display: flex;
    gap: 15px;
}

.inline-fields .custom-account-field {
    flex: 1;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .custom-account-setting {
        margin: 0 10px;
        padding: 10px;
    }

    .custom-account-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .custom-account-avatar {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .custom-account-avatar img {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .custom-account-avatar button {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .custom-account-field {
        margin-bottom: 15px;
    }

    .custom-account-field label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .custom-account-field input,
    .custom-account-field textarea {
        padding: 15px;
        height: auto;
        font-size: 14px;
    }

    .custom-account-field textarea {
        height: 150px;
    }

    .custom-account-submit {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .inline-fields {
        flex-direction: column;
        gap: 10px;
    }

    #custom_account_address {
        width: 100% !important;
    }
}
