/* =========================
   RESET
========================= */
body, h1, h2, h3, p, ul, li, table {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #10264D;
}

/* =========================
   HEADER
========================= */
header {
    text-align: center;
    padding: 20px 10px;
}

.logo {
    max-height: 300px;
    display: block;
    margin: 20px auto;
}

/* =========================
   MOBILE LOGO
========================= */
@media (max-width: 768px) {
    .logo {
        max-height: 180px;
        margin-top: 40px;
    }
}

/* =========================
   TOP ACTIONS
========================= */
.top-actions {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin: 10px auto 25px;

    flex-wrap: wrap;
}

.top-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    border-radius: 10px;
    border: 2px solid #10264D;

    background: white;
    color: #10264D;

    text-decoration: none;
    font-weight: bold;

    transition:
        transform 0.15s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.top-button:hover {
    transform: translateY(-1px);

    background: #10264D;
    color: #F0CB61;
}

.top-button:active {
    transform: scale(0.98);
}

/* =========================
   TABS
========================= */
.day-tabs,
.round-tabs {
    display: flex;
    gap: 12px;
    margin: 18px auto;

    flex-wrap: nowrap;
    box-sizing: border-box;
}

/* DESKTOP */
@media (min-width: 769px) {
    .day-tabs,
    .round-tabs {
        justify-content: center;
        overflow: visible;
        width: auto;
        padding: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .day-tabs,
    .round-tabs {
        justify-content: flex-start;

        overflow-x: auto;
        overflow-y: hidden;

        width: 100%;
        padding: 0 12px;

        -webkit-overflow-scrolling: touch;
    }
}

/* BUTTONS */
.day-tab,
.round-tab {
    padding: 10px 16px;

    border-radius: 10px;
    border: 2px solid #10264D;

    cursor: pointer;

    background: white;
    color: #10264D;

    font-weight: bold;

    transition:
        transform 0.15s ease,
        background 0.3s ease,
        color 0.3s ease;

    flex: 0 0 auto;
    white-space: nowrap;
}

.day-tab:hover,
.round-tab:hover {
    transform: translateY(-1px);
}

.day-tab.active,
.round-tab.active {
    background: #10264D;
    color: #F0CB61;
}

/* cacher scrollbar mobile */
.round-tabs::-webkit-scrollbar,
.day-tabs::-webkit-scrollbar {
    display: none;
}

/* =========================
   TABLE
========================= */
.table-wrapper {
    width: 92%;
    margin: 20px auto;

    overflow-x: auto;

    border-radius: 10px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.12);
}

/* HEADER TABLE */
thead tr {
    background: #F0CB61;
    color: #10264D;
    font-weight: bold;
}

/* ROWS */
tbody tr:nth-child(odd) {
    background: #D9E4F4;
}

tbody tr:nth-child(even) {
    background: #F4F6F9;
}

/* MOBILE TABLE */
@media (max-width: 768px) {
    .table-wrapper {
        width: 100%;
        border-radius: 0;
    }
}

/* =========================
   FOOTER
========================= */
.site-footer {
    margin-top: 40px;
    padding: 20px 10px;

    text-align: center;

    font-size: 12px;
    color: #10264D;

    opacity: 0.6;

    border-top: 1px solid rgba(16, 38, 77, 0.1);
}

.site-footer p {
    margin: 0;
    letter-spacing: 0.3px;
}

.site-footer .heart {
    color: #F0CB61;
}