/* Dropdown Styles */
.cs-dropdown {
    position: relative;
}

.cs-dropdown-toggle {
    cursor: pointer;
    white-space: nowrap;
}

/* Dropdown arrow styles moved to header.css for better mobile responsiveness */

.cs-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin: 0;
    padding: 8px 0;
    list-style: none;
}

.cs-dropdown:hover .cs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.cs-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.cs-dropdown-link:hover {
    background-color: #f5f5f5;
    color: #d4851c;
    padding-left: 24px;
}

.cs-dropdown-link:focus {
    outline: none;
    background-color: #f5f5f5;
    color: #d4851c;
}

/* Profile Icon Styles */
.cs-profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cs-profile-icon:hover {
    background-color: rgba(212, 133, 28, 0.1);
}

.cs-profile-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.cs-profile-icon:hover svg {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .cs-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-left: 20px;
    }
    
    .cs-dropdown-link {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .cs-dropdown-link:hover {
        padding-left: 0;
        background: none;
    }
}

/* Ensure dropdown stays open on mobile when clicked */
@media screen and (max-width: 768px) {
    .cs-dropdown-toggle {
        pointer-events: none;
    }
    
    .cs-dropdown-menu {
        display: block;
    }
} 