@font-face {
    font-family: 'Source Sans';
    src: url('assets/fonts/Source_Sans_3/static/SourceSans3-Regular.ttf') format('truetype');
}

/* Base styles shared between pages */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans', sans-serif;
    background-color: #8C1515;
    color: #2E2D29;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

h1 {
    font-size: 2em;
    margin: 0;
    color: #2E2D29;
}

nav {
    margin: 20px 0;
}

nav a {
    margin: 0 15px;
    font-size: 18px;
    text-decoration: none;
    color: #016895;
}

nav a:hover {
    text-decoration: underline;
}

h2, h3 {
    color: #444;
}

section.info {
    text-align: left;
    margin: 20px 0;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

.info {
    background-color: #FFFFFF;
    padding: 20px;
    /* border-radius: 10px; */
    /* border: 1px solid #ddd; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    margin-bottom: 30px;
}

.info h2 {
    font-size: 2em;
    margin-bottom: 15px;
    /* color: #333; */
}

.info p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.indented-paragraph {
    margin-left: 20px; /* Small indentation for paragraphs */
}

.about-content h3 {
    font-size: 1.5em;
    margin-top: 20px;
    /* color: #0077cc; */
}

.about-content ul {
    margin-left: 20px;
}

.about-content ul li {
    list-style-type: disc;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Controls for Schedule page */
.controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    background-color: #8F993E;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #7a8435;
}

/* Schedule Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th:nth-child(1) {
    width: 200px; /* Date column width */
}

th:nth-child(2) {
    width: 150px; /* Presenter column width */
}

th {
    background-color: #f4f4f4;
    cursor: pointer;
}

th:hover {
    background-color: #e0e0e0;
}

#sortIcon {
    margin-left: 5px;
}

tr:hover {
    background-color: #f1f1f1;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.next-meeting-notice {
    font-size: 1.3em;
    font-weight: bold;
    color: #8C1515;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
}
