.saved-cart-item {
    transition: all 0.3s ease;
}

.saved-cart-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.saved-cart-item .cart-tags .badge {
    font-size: 0.8rem;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
}

.saved-cart-item .cart-tags .remove-tag {
    text-decoration: none;
    font-weight: bold;
}

.saved-cart-item .cart-tags .remove-tag:hover {
    opacity: 0.8;
}

.cart-products-preview table td,
.cart-products-preview table th {
    vertical-align: middle;
}

.cart-products-preview img {
    max-width: 50px;
    height: auto;
}

@media (max-width: 768px) {
    .cart-products-preview {
        overflow-x: auto;
    }
    
    .cart-products-preview table {
        min-width: 500px;
    }
}

.tags-checkboxes {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.tags-checkboxes .form-check {
    margin-bottom: 5px;
}

.save-cart-button .btn i.material-icons,
.saved-cart-item .btn i.material-icons {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}