body {
    background: #008080;
    font-family: Tahoma, Verdana, sans-serif;
    margin: 0;
    padding: 40px;
    font-size: 13px;
}

/* ===== WINDOW ===== */

.window {
    width: 850px;
    margin: 0 auto;
    background: #ece9d8;
    border: 2px solid #1e4fa1;
    box-shadow: 3px 3px 0 #000;
}

.large-window {
    width: 1100px;
}

/* ===== TITLE BAR ===== */

.title-bar {
    background: linear-gradient(to right, #0a246a, #3a6ea5, #0a246a);
    color: white;
    padding: 6px 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ===== WINDOW BUTTONS ===== */

.window-buttons {
    display: flex;
    gap: 4px;
}

.window-buttons div {
    width: 18px;
    height: 18px;
    background: #d4d0c8;
    border: 1px solid white;
    text-align: center;
    line-height: 16px;
    font-size: 10px;

    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #808080;
}

/* ===== CONTENT ===== */

.content {
    padding: 20px;
}

/* ===== FOLDERS ===== */

.folder {
    display: block;
    margin: 10px 0;
    padding: 12px;
    background: #d4d0c8;
    border: 2px outset #ffffff;
    text-decoration: none;
    color: black;
}

.folder:hover {
    background: #e0e0e0;
    border: 2px inset #ffffff;
}

/* ===== CAMPAIGN INFO ===== */

.campaign-info {
    background: white;
    border: 2px inset gray;
    padding: 15px;
    margin-bottom: 20px;
    white-space: pre-line;
}

/* ===== NAVIGATION ===== */

.session-navigation {
    background: #d4d0c8;
    border: 2px inset white;
    padding: 12px;
    margin-bottom: 15px;
}

.session-navigation a {
    display: block;
    margin: 6px 0;
    color: #0a246a;
    text-decoration: none;
    font-weight: bold;
}

.session-navigation a:hover {
    text-decoration: underline;
}

/* ===== SESSIONS ===== */

.session-block {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #999;

    white-space: pre-line;
    line-height: 1.8;
}

/* ===== TEXT BOX ===== */

.story-box {
    background: white;
    border: 2px inset gray;
    padding: 20px;

    white-space: pre-line;
    line-height: 1.8;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    .window,
    .large-window {
        width: 95%;
        margin: 10px auto;
    }

    .content {
        padding: 12px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    .session-navigation a {
        font-size: 14px;
    }

    .story-box,
    .session-block {
        font-size: 15px;
        line-height: 1.7;
    }

    .title-bar {
        font-size: 14px;
    }

    .window-buttons div {
        width: 18px;
        height: 18px;
        line-height: 16px;
        font-size: 10px;
    }
}
