﻿

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

    .close-btn:hover {
        color: red;
    }

/* Table Styles */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

    .cart-table th, .cart-table td {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .cart-table th {
        background: #007bff;
        color: white;
    }

.cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

/* Quantity Buttons */
.qty-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
}

    .qty-btn:hover {
        background: #0056b3;
    }

/* Cart Footer */
.cart-footer {
    margin-top: 20px;
    text-align: right;
}

.checkout-btn {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

    .checkout-btn:hover {
        background: #218838;
    }



/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
    }

    .cart-table th, .cart-table td {
        font-size: 14px;
        padding: 8px;
    }

    .qty-btn {
        font-size: 14px;
        padding: 3px 8px;
    }
}
