/* CSS cho menu user theo cấu trúc từ Cart.html */

.account-dropdown-menu a:hover, 
.account-dropdown-menu button:hover {
    background-color: #f0f0f0;
}

.account-dropdown-menu button:hover {
    background-color: #14a9d0 !important; /* Darker shade on hover */
}

.account-dropdown {
    cursor: pointer;
}

.account-dropdown-menu {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .account-dropdown img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .account-dropdown span {
        font-size: 14px !important;
        line-height: 35px !important;
    }
    
    .account-dropdown-menu {
        min-width: 120px !important;
        right: 0 !important;
        left: auto !important;
    }
}