:root {
    --primary: #2563eb;
    --accent: #f59e0b;
    --bg: #f8fafc;
    --text: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
}

.news-ticker {
    background: #1e293b;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

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

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

.search-container input {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-size: 1rem;
    outline: none;
}

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

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
}

.view-btn {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .container { padding: 10px; }
    h1 { font-size: 1.5rem; }
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumbs span {
    cursor: pointer;
    transition: color 0.2s;
}

.breadcrumbs span:hover {
    color: var(--primary);
    text-decoration: underline;
}

.year-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    grid-column: 1 / -1; /* Makes it span full width */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.file-link {
    text-decoration: none;
    color: var(--primary);
    background: #eff6ff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    border: 1px solid #dbeafe;
}

.file-link:hover {
    background: var(--primary);
    color: white;
}

#no-results {
    grid-column: 1 / -1; /* Centers it if using CSS Grid */
    width: 100%;
    padding: 40px;
}

footer {
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
}

.footer-content p {
    margin: 5px 0;
}

.founder-credit {
    font-size: 0.95rem;
    margin-top: 10px;
}

.founder-name {
    color: var(--primary);
    font-weight: 600;
}

.footer-links {
    margin-top: 15px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}