
/* User Profile Dropdown */
.main-menu-two__user-box {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.user-profile-dropdown {
    position: relative;
}

.user-profile-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--thm-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-profile-toggle:hover {
    color: var(--thm-primary);
}

.user-profile-toggle i {
    font-size: 20px;
}

.user-profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.user-profile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-profile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-profile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: background 0.3s;
}

.user-profile-menu ul li a:hover {
    background: #fdf6e6;
    color: #7c5a22 !important;
}

.user-profile-menu ul li a:hover i {
    color: #7c5a22 !important;
}

/* Modals */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.profile-modal.active {
    display: flex;
}

.profile-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.profile-modal-content h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.profile-modal-content .form-group {
    margin-bottom: 20px;
}

.profile-modal-content label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.profile-modal-content input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.profile-modal-btns {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel, .btn-confirm, .btn-save {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-cancel {
    background: #eee;
    color: #666;
}

.btn-cancel:hover {
    background: #ddd;
}

.btn-confirm, .btn-save {
    background: var(--thm-primary, #e74c3c);
    color: #fff;
}

.btn-confirm:hover, .btn-save:hover {
    opacity: 0.9;
}

.logout-confirm-text {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
