/* Custom styles for shopping list */

/* Default item styling */
.default-item {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
}

/* Shop cards */
.shop-card {
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.shop-card .card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Item controls */
.item-controls {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.list-group-item:hover .item-controls {
    opacity: 1;
}

/* Custom checkmark for completed items */
.completed-item {
    text-decoration: line-through;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .item-controls {
        opacity: 1;
    }
}