html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* For other browsers */
}

body {
    background-color: #020c1b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    padding-top: 2rem;
    margin-bottom: 1rem;
    color: #66fcf1;
}

.highlight-box {
    background-color: #1b2533;
    width: 100%;
    color: #ffffff;
    border-radius: 10px;
    padding: 0;
    max-width: 1200px;
    margin: 2rem auto;
    margin-top: auto;
    font-size: 0.9rem;
    line-height: 1.5;
    box-sizing: border-box;

    border-radius: 8px;
    border: 1px solid rgba(102, 252, 241, 0.2);
    box-shadow: 0 2px 8px rgba(102, 252, 241, 0.15), 0 4px 16px rgba(102, 252, 241, 0.1);
    position: relative;
}

.note-container {
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
}

.note-bold-light {
    font-weight: bold;
    color: #FFD700;
    font-size: 1rem;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.description {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0 1rem;
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        position: relative;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
        position: relative;
        z-index: 2;
        padding-right: 0.5rem;
    }

    .table-container table {
        min-width: 800px;
    }

    .highlight-box,
    .footer,
    .description {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem;
        position: relative;
        z-index: 1;
    }

    .top-nav {
        position: relative;
        z-index: 10;
    }

    footer {
        z-index: 1;
        position: relative;
    }
}