/* General Page Styling */
body {
    font-family: 'Segoe UI', SegoeUI, Roboto, Helvetica, Arial, sans-serif;
    background-color: #fdfcf8;
    color: #333;
    max-width: 1200px; /* Wider for the index */
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
}

h2 {
    font-family: 'Georgia', serif;
    color: #2c3e50;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    column-span: all;
    text-align: center;
}

/* THE MAGIC GRID: Fixes the messy surname list */
body {
    display: block;
}

/* Target the specific container of names */
.surname-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin: 30px 0;
}

/* Individual Name Tiles */
a {
    display: block;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.2s;
}

a:hover {
    border-color: #d4af37;
    background: #fffdf5;
    color: #b8860b;
}

/* Footer & Buttons */
.nav-footer {
    clear: both;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #d4af37;
}

.nav-button {
    background-color: #2c3e50;
    color: white !important;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.nav-button:hover {
    background-color: #d4af37;
}