* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(21, 21, 103);
    padding: 0 40px;
    width: 100%;
    height: 70px;
    h1 {
        color: #fff;
    }
}

.nav .logo {
    width: 14%;
}

.nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 25px;
    font-size: 20px;
}

.nav-link {
    text-decoration: none;
    transition: all 0.8s;
    color: #fff;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f6f7fb;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Page Title */
h1 {
    text-align: center;
    margin: 30px;
    color: #222;
    letter-spacing: 1px;
    font-size: 2.2rem;
}

/* Table */
.table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    width: 90%;
    margin-bottom: 50px;
}

.table thead th {
    background: #4b6cb7;
    /* gradient fallback */
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
}

.table td,
.table th {
    vertical-align: middle;
    padding: 14px 12px;
    border-color: #e4e6eb;
}

.table tbody tr:nth-child(even) {
    background: #f8f9fb;
}

.table tbody tr:hover {
    background: #eef1f6;
    transition: background 0.2s ease-in-out;
}

/* Product Image */
.table img {
    width: 60px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Remove Button */
.btn-danger {
    background: #e63946;
    border: none;
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-danger:hover {
    background: #d62828;
}

/* Grand Total Row */
tfoot td {
    font-weight: bold;
    font-size: 1rem;
    background: #f1f3f8;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .table img {
        width: 45px;
    }

    h1 {
        font-size: 1.8rem;
    }
}


/* Footer */
.last-section {
    background-color: #101c3a;
    display: inline-block;
    margin-top: 0;
    height: 500px;
    width: 100%;
}

.big-div {
    display: flex;
    justify-content: space-around;
    max-width: 1400px;
    margin: 20px auto;

}

.child {
    width: 22%;
}

.head-title {
    color: #e1e1e1;
    margin-bottom: 20px;
}

.last-p {
    color: #adaaaa;
    font-size: 12px;
    line-height: 50px;
    border-bottom: 1px solid #555;
    position: relative;
    padding-left: 15px;
}

.last-p::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #adaaaa;
    font-weight: bold;
}

.last-parag {
    color: #adaaaa;
    font-size: 12px;
    line-height: 35px;
}


.info-link {
    color: #adaaaa;
    text-decoration: none;
}

.info-list {
    list-style: none;
}

.info-l {
    color: #adaaaa;
    font-size: 12px;
    line-height: 50px;
    border-bottom: 1px solid #555;
}

.info-icons {
    font-size: 15px;
    margin-right: 10px;
}

.footer-bottom {
    background-color: #3e65c7;
    height: inherit;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.btn-check{
    background-color: #101c3a;
    padding: 20px;
    width: 200px;
    border: none;
    border-radius: 15px;
    margin-bottom: 50px;
    a{
        color: #adaaaa;
        text-decoration: none;
        font-size: 25px;
    }
}