:root {
    --font-ui: 'Barclay Sans', Arial, Helvetica, sans-serif;
    --font-news-headline: 'Barclay Sans', Arial, Helvetica, sans-serif;
    --font-code: 'Barclay Sans Mono', monospace;
}

/* General Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-ui);
    background-color: #f0f4f8 !important;
    color: #333;
    margin: 0;
    padding: 0;
}

.term-container {
    font-family: var(--font-code) !important;
    background-color: #00324e !important;
}

header {
    background-color: #004d7a;
    color: white;
    text-align: center;
    padding: 20px 0;
    border-bottom: 5px solid #00324e;
}

a {
    color: white;
}

footer {
    background-color: #00324e;
    color: white;
    text-align: center;
    padding: 20px 0;
    border-top: 5px solid #004d7a;
}

.footer-text {
    font-size: 1rem !important;
}

h1 {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #f4f4f4;
}

/* Time and Weather Section */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00324e;
    color: white;
    padding: 15px;
    border-top: 5px solid #004d7a;
    margin-bottom: 20px;
}

.weather-info, .time-info {
    font-size: 1rem;
}

.weather-info {
    font-weight: bold;
}

.time-info {
    font-style: italic;
}

/* Main Content Area */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.news-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.news-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.news-item h3 {
    font-family: var(--font-news-headline);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.news-item a {
    color: #004d7a;
    text-decoration: none;
}

.news-item a:hover {
    color: #004d7a;
    text-decoration: green wavy underline;
}

.news-item a:active {
    color: #000000;
    text-decoration: green wavy underline;
}

.news-item a:visited {
    color: #000000;
}

.news-item p {
    font-size: 1.1rem;
    color: #555;
}

/* Media Queries for responsiveness */
@media (min-width: 600px) {
    .news-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .news-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Search Bar */
.search-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.search-box {
    font-family: var(--font-ui);
    font-weight: 400;
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-button {
    font-family: var(--font-ui);
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: #00324e;
    color: white;
    border-radius: 5px;
    margin-left: 5px;
}

.search-button:hover {
    background: #000000;
}

.search-select,
#newsSource {
    padding:10px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:5px;
    margin-right:5px;
    font-family:var(--font-ui);
}

.news-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}
