:root {
    /* Brighter warm cream palette */
    --bg-main: #fbf4e9;          /* warm cream */
    --bg-card: #fffaf3;          /* paper */
    --bg-soft: rgba(236, 222, 198, 0.55);
    --bg-soft-strong: rgba(236, 222, 198, 0.75);

    --accent: #537984;           /* happy deep green */
    --accent-soft: rgba(47, 107, 79, 0.18);

    --text-main: #3a352f;        /* warm dark brown */
    --text-muted: #6a5f52;

    --link: #537984;
    --link-hover: #355b66;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.04);

    --radius: 10px;
}

/* Announcements banner */
.announcements-banner {
    background-color: var(--bg-soft);
    color: var(--text-main);
    padding: 16px;
    border-left: 5px solid var(--accent);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 16px;
    box-shadow: var(--shadow-soft);
}

.announcements-banner a {
    color: var(--link);
    text-decoration: none;
}

.announcements-banner a:hover {
    color: var(--link-hover);
}

/* Base */
body {
    font-family: "Libre Baskerville", "Palatino Linotype", Palatino,
                 "Book Antiqua", Georgia, serif;
    background-color: var(--bg-main);
    padding: 20px;
    margin: 0;
    color: var(--text-main);
    line-height: 1.65;
}

.content {
    max-width: 860px;
    margin: auto;
    padding: 20px;
    border-radius: var(--radius);
}

/* Titles */
.title-container h1 {
    margin-top: 40px;
    font-size: 26px;
    font-weight: 400;
}

.title-container h2 {
    margin-top: 14px;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Buttons */
.button {
    padding: 16px 18px;
    margin: 10px;
    background-color: var(--bg-soft);
    border: 1px solid rgba(47, 107, 79, 0.18);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    color: var(--text-main);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.button:hover {
    background-color: var(--bg-soft-strong);
}

/* Layout blocks */
.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.left-panel {
    flex: 1;
    padding: 20px;
    border-right: 1px solid rgba(47, 107, 79, 0.18);
}

.right-panel {
    flex: 1;
    padding: 20px;
}

/* Lists */
ul li {
    margin-bottom: 10px;
}

/* Special document buttons */
.special-doc-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.special-button {
    background-color: rgba(236, 222, 198, 0.45);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(47, 107, 79, 0.18);
}

.special-button:hover {
    background-color: rgba(236, 222, 198, 0.65);
}

/* Standout rows */
.standout-row {
    background-color: rgba(236, 222, 198, 0.35);
    border-left: 4px solid var(--accent);
    padding-left: 10px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: var(--bg-card);
    color: var(--text-main);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

th, td {
    padding: 11px 12px;
    text-align: left;
}

th {
    background-color: var(--bg-soft);
    font-weight: 500;
}

tr:nth-child(even) {
    background-color: rgba(236, 222, 198, 0.22);
}

tr:hover {
    background-color: rgba(236, 222, 198, 0.32);
}

/* Images */
.title-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: var(--radius);
}

/* Links */
a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
