﻿h1 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px 0 30px;
}

.table-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(39, 57, 87, 0.08);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #f5f7fb;
}

th,
td {
    padding: 16px 22px;
    text-align: left;
}

th {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

tbody tr {
    border-bottom: 1px solid #f1f2f5;
    background: #fff;
}

    tbody tr:nth-child(even) {
        background: #fafbff;
    }

    tbody tr:hover {
        background: #fdf5f1;
    }

td:first-child {
    color: #3a70ff;
    font-weight: 500;
}

.status {
    color: #29aa61;
    font-weight: 600;
}

.price {
    color: #ff6a3c;
    font-weight: 600;
}

.note {
    text-align: center;
    color: #9aa4b8;
    margin-top: 22px;
    font-size: 13px;
}

@media (max-width: 960px) {
    header {
        padding: 16px 5vw;
    }

    main {
        padding: 30px 4vw 80px;
    }

    table {
        font-size: 13px;
    }

    th,
    td {
        padding: 12px 10px;
    }
}
