.user-profile-container {
    /* background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    padding: 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.user-avatar {
    margin-bottom: 15px;
}

.user-avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.user-id {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.user-name {
    font-size: 18px;
    color: #333;
    margin: 5px 0;
}

.user-location {
    font-size: 14px;
    color: #777;
    margin: 5px 0;
}
.user-setting {
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
    margin: 10px 0;
}

.user-language, .user-dark-mode {
    display: flex; 
    align-items: center;
    flex-flow: 1;
}

.user-options {
    margin-top: 20px;
    width: 100%;
}

.user-option-button {
    display:flex;
    align-items: left;
    background-color: #EFEFEF;
    color: 252525;
    border: none;
    border-radius: 17px;
    padding: 20px 15px;
    cursor: pointer;
    margin: 5px 0;
    padding: 15px;
    width: 100%;
    transition: background-color 0.3s;
}

.user-option-button:hover {
    background-color: var(--primary-color);
}

.user-option-button img {
    margin-right: 10px;
    vertical-align: middle;
}

.user-options .list-group-item{
    /* background-color: #EFEFEF !important; */
    margin: 0.3rem 0rem !important;
    padding: 0.8rem !important;
    border:none;
}

.theme-section .theme-section-item{
    padding: 0.8rem !important;
}

.avatar img.rounded-circle{
    opacity: 0.6;
}

/* Modal Layout */
.change-password-modal-dialog {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Typography */
.change-password-modal-dialog .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.change-password-modal-dialog .modal-body .form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #343a40;
}

.change-password-modal-dialog .change-password-section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c757d;
  margin-top: 1rem;
}

.change-password-modal-dialog .modal-footer .change-password-help-text {
  font-size: 0.75rem;
  color: #868e96;
  margin-bottom: 0.5rem;
}

.change-password-modal-dialog .modal-footer .change-password-help-text strong {
  font-size: 0.875rem;
  color: #f59c00;
}

/* Inputs and Placeholder Styling */
.change-password-modal-dialog .modal-body input::placeholder {
  font-size: 0.85rem;
  color: #adb5bd;
}

/* Password Checklist */
.change-password-modal-dialog #password-checklist li small {
  font-size: 0.82rem;
  color: #495057;
}

/* Margin Cleanup */
.change-password-modal-dialog .reenter-password-group,
.change-password-modal-dialog .reenter-password-group input {
  margin-bottom: 0rem;
}

.change-password-modal-dialog #pw-match-msg {
  margin-top: 0.1rem;
  margin-bottom: 0rem;
  line-height: 1.2;
}

/* Separator */
.change-password-modal-dialog .change-password-separator {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  border-top: 1px solid #dee2e6;
}

/* Footer Padding */
.change-password-modal-dialog .modal-footer {
  padding-top: 0.5rem;
}

.change-password-modal-dialog .modal-footer .change-password-buttons {
  margin-top: 0.5rem;
}

@media (max-width: 576px) {
    .change-password-modal-dialog {
        margin: 0.5rem;
        align-items: flex-start;
    }

    .change-password-modal-dialog .modal-content {
        width: 100%;
        border-radius: 1rem;
    }

    .change-password-modal-dialog .modal-body,
    .change-password-modal-dialog .modal-footer {
        padding: 1rem;
    }

    .change-password-buttons {
        flex-direction: column;
    }

    .change-password-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;        
        padding: 0.5rem 0.75rem;    
    }

    .change-password-modal-dialog .modal-title {
        font-size: 1.1rem;
    }

    .change-password-modal-dialog .modal-body .form-group label {
        font-size: 0.85rem;
    }

    .change-password-modal-dialog #password-checklist li small {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .change-password-modal-dialog .change-password-section-label {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }

    .change-password-modal-dialog input::placeholder {
        font-size: 0.75rem;
    }

    #pw-match-msg {
        font-size: 0.7rem;
    }

    .change-password-modal-dialog .modal-footer .change-password-help-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .change-password-modal-dialog .modal-footer .change-password-help-text strong {
        font-size: 0.9rem;
        color: #f59c00;
    }
}

