﻿body {
    background-color: #f8f9fa;
}

.cart-container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}

.cart-title {
    margin-bottom: 30px;
}

.cart-summary {
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 6px;
}

.table thead th {
    vertical-align: middle;
}

.cart-item-image {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}
.emptydiv {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .emptydiv p {
        color: #5F9EA0;
        font-size: 17px;
    }

    .emptydiv a {
        color: #B22222;
        border-bottom: 1px dotted #aaaaaa;
    }
.checkout-container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}

.order-summary {
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 6px;
}

.section-title {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.3rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #495057;
}