/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #e2be6f;
    color: white;
    text-align: center;
    padding: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 2rem;
}

.header-content p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.container {
    flex: 1;
    padding: 20px;
}

.table-section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.table-container {
    width: 100%;
    max-width: 800px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    margin-bottom: 20px;
}

caption {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    color: #333;
}

thead th {
    background-color: #f4f4f4;
    color: #333;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

tbody td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

a {
    color: #e2be6f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    caption {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }

    .header-content p {
        font-size: 0.9rem;
    }

    table {
        font-size: 0.8rem;
    }

    caption {
        font-size: 0.9rem;
    }
}
