body {
    background: #111;
    color: #ddd;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* ==========================================
   Latest Website Updates
   ========================================== */

.latest-updates {
    width: 990px;
    margin: 25px auto;
    background: #222;
    border: 1px solid #444;
    box-sizing: border-box;
}

.latest-updates-title {
    padding: 20px;
    background: #2b2b2b;
    border-bottom: 2px solid #555;
    text-align: center;
}

.latest-updates-title h1 {
    margin: 0;
    color: #fff;
    font-size: 30px;
}

.latest-updates-title p {
    margin: 8px 0 0;
    color: #bbb;
}

.latest-updates-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.latest-updates-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #333;
}

.latest-updates-list li:nth-child(even) {
    background: #1b1b1b;
}

.latest-updates-list li:last-child {
    border-bottom: none;
}

.update-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
}

.update-link:hover {
    background: #2f2f2f;
}

.page-title {
    color: #66aaff;
    font-weight: bold;
    text-align: left;
}

.update-date {
    flex-shrink: 0;
    color: #aaa;
    font-size: 13px;
    white-space: nowrap;
    text-align: right;
}

.no-updates {
    margin: 0;
    padding: 20px;
    color: #ccc;
    text-align: center;
}