
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 25px;
}

header h2 {
    color: #4b0082;
    margin-bottom: 5px;
}

header h3 {
    color: #333;
    font-weight: normal;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.search-box input:focus {
    border-color: #4b0082;
}

.results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.result-item {
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.result-item a {
    text-decoration: none;
    color: #003366;
    font-size: 14px;
    font-weight: 500;
}

.result-item a:hover {
    text-decoration: underline;
}

.no-results {
    display: none;
    text-align: center;
    color: #999;
    margin-top: 20px;
}
.years {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.years a {
    background: #4b0082;
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.years a:hover {
    background: #360061;
}