/* Checkout Cart Styling */
#checkout-cart__quantity_input {
    max-width: 40px;
}

.checkout-cart__quantity {
    font-weight: normal;
    font-size: 1em;
    color: #333;
    max-width: 20px;
}

.checkout-cart__actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.checkout-cart__edit-btn,
.checkout-cart__delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.checkout-cart__edit-btn:hover {
    background: #f8f9fa;
    color: #007bff;
    border-color: #007bff;
    text-decoration: none;
}

.checkout-cart__delete-btn {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.checkout-cart__delete-btn:hover {
    background: #c82333;
    border-color: #bd2130;
}

.td-actions {
    width: 80px;
    min-width: 80px;
}

.td-qty {
    width: 60px;
    min-width: 60px;
}