/* Menu Complete View Styles */
.menu-stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-dishes {
    border-left-color: #ff6b35;
}

.category-drinks {
    border-left-color: #3b82f6;
}

.category-mixed {
    border-left-color: #8b5cf6;
}

.item-row {
    transition: background-color 0.15s ease;
}

.item-row:hover .group-hover\:text-papaya-orange {
    color: #ff6b35;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-indicator {
    background-color: #ff6b35;
}

.drink-indicator {
    background-color: #3b82f6;
}