.fas {
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fa-spinner.fa-spin {
    animation: spin 1s linear infinite;
}

/* Quantity and Remove Button Styles */
.quantity-btn, .remove-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    line-height: 1;
}

.quantity-btn:hover {
    background: #e9ecef;
    border-color: #007bff;
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.remove-btn {
    border-color: #dc3545;
    color: #dc3545;
}

.remove-btn:hover {
    background: #f8d7da;
    border-color: #c82333;
}

.remove-btn .fas {
    margin: 0;
}

