﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    font-size: 24px;
    margin: 30px 0;
    text-decoration: underline;
    font-weight: bold;
}

h2 {
    text-align: center;
    font-size: 20px;
    margin: 40px 0 20px;
    text-decoration: underline;
    font-weight: bold;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.member-card {
    border: 1px solid #000;
    padding: 20px;
    text-align: center;
    background: white;
}

    .member-card img {
        width: 120px;
        height: 111px;
        object-fit: cover;
        margin: 10px 0;
    }

.member-title {
    font-weight: bold;
    font-size: 14px;
    margin: 10px 0;
}

.member-name {
    font-weight: bold;
    font-size: 14px;
    margin: 10px 0;
}

.member-description {
    font-size: 14px;
    margin: 10px 0;
}

.member-years {
    font-weight: bold;
    font-size: 14px;
}

.table-section {
    margin: 40px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #000;
    padding: 15px;
    text-align: center;
}

th {
    background: #f8f8f8;
    font-size: 18px;
    font-weight: bold;
}

.numbered-cell {
    width: 40px;
    font-weight: bold;
}

.full-width-cell {
    grid-column: 1 / -1;
}

.nominations-section {
    margin: 40px 0;
    padding: 20px;
    border: 1px solid #000;
}

    .nominations-section h3 {
        font-size: 18px;
        text-decoration: underline;
        margin-bottom: 15px;
    }

    .nominations-section p {
        font-size: 16px;
        margin: 10px 0;
        text-align: left;
    }

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    .member-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 8px;
    }

    .member-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {


    h1 {
        font-size: 18px;
    }

    h2 {
        font-size: 16px;
    }

    .member-description,
    .member-name,
    .member-title {
        font-size: 12px;
    }

    table {
        font-size: 11px;
    }

    th, td {
        padding: 5px;
    }
}
