/* Header Styling */
.header {
    background-color: #f4f8fb;
    color: #003366;
    padding: 20px 0 0 0;
    text-align: center;
    margin-bottom: 0;
}

    .header h1 {
        font-size: 3.0em;
        margin: 0;
        font-weight: 700;
        padding-bottom: 0;
    }

h2 {
    font-size: 1.9rem;
    color: #003366;
    margin-bottom: 18px;
}   

.astro-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 10%;
}

section {
    padding: 15px 25px;
}

.astro-section-alt {
/*    background: #f4f8fb;
    border-radius: 12px;
    margin: 1em 1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);*/
}      

ul {
    list-style-type: disc;
    margin: -0.5em 0 1.5em 2em;
    padding: 0;
}

li {
    line-height: 1.7;
}

ul ul {
    list-style-type: circle;
    margin: 0.5em 0 0.5em 3em;
    padding: 0;
}

/* table stuff */
.table-container {
    overflow-x: auto;
    margin: 1.5em 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.astro-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    font-size: 0.95rem;
    line-height: 1.4;
}

    .astro-table thead th {
        background-color: #f5f7fa;
        color: #333;
        text-align: left;
        padding: 0.75em 1em;
        border-bottom: 2px solid #d1d5db;
    }

    .astro-table tbody td {
        padding: 0.65em 1em;
        border-bottom: 1px solid #e2e8f0;
        vertical-align: top;
    }


    .astro-table tbody tr:nth-child(even) {
        background-color: #fafbfd;
    }


    .astro-table tbody tr:hover {
        background-color: #f0f4f8;
    }


    .astro-table caption {
        caption-side: bottom;
        text-align: right;
        font-size: 0.85rem;
        color: #666;
        padding-top: 0.5em;
    }
