/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Body and table container */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f8fa;
}
.table-container {
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    padding: 20px;
}

.table-titles {
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    padding: 16px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Table headers */
th {
    padding: 12px 16px;
    text-align: left;
    background-color: #e9ecef;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Table rows */
tr {
    border-bottom: 1px solid #e9ecef;
}

/* Table cells */
td {
    padding: 12px 16px;
    color: #343a40;
    font-size: 0.9rem;
    vertical-align: top;
}

/* Even row styling */
tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Styling for links */
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Responsive layout */
@media (max-width: 768px) {
    th, td, h1, h3 {
        padding: 10px;
        font-size: 0.85rem;
    }
}