﻿/* RESET TOP SPACING */
body {
    margin: 0;
    padding: 0;
}

/* MAIN CONTAINER */
.courtroom-container {
    width: 80%;
    margin: 0 auto;
    padding-top: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    text-align: center;
}

/* IMAGE SECTION */
.courtroom-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .courtroom-image img {
        width: 55%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0;
    }

/* PROMPT BOX */
.prompt-box {
    margin-top: 10px;
    margin-bottom: 12px;
}

    .prompt-box textarea {
        width: 100%;
        height: 80px;
        padding: 10px;
        border: 1px solid #bbb;
        border-radius: 6px;
        resize: vertical;
    }

/* NAV LINKS — FIXED SPACING */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px; /* spacing between hyperlinks */
    margin: 10px 0 14px 0;
    text-decoration: underline;
}

.nav-item {
    text-decoration: underline;
    color: #0056b3;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s ease;
}

    .nav-item:hover {
        color: #003d80;
    }

/* COURT APPOINTEES */
.appointees-section {
    margin-top: 10px;
    text-align: left;
}

    .appointees-section h2 {
        margin-bottom: 10px;
        border-bottom: 2px solid #ddd;
        padding-bottom: 4px;
    }

.appointee {
    margin-bottom: 10px;
    text-align: left;
}

    .appointee h4,
    .appointee h5 {
        display: inline-block;
        margin: 0 6px 0 0;
        padding: 0;
    }

    .appointee h4 {
        font-size: 1.15rem;
        color: #222;
    }

    .appointee h5 {
        font-size: 1rem;
        color: #555;
        font-weight: normal;
    }

/* OUTPUT BOX — SHARP BORDER + CLEAN LOOK */
.output-box {
    border: 2px solid #0078d7; /* strong blue border */
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: left !important;
}

    .output-box label {
        display: block;
        font-weight: 400;
        margin-bottom: 8px;
        color: darkgrey;
    }

/* QUIZ QUESTION TEXT */
.output-area strong {
    font-size: 14px;
    color: #000;
}

/* INNER OUTPUT AREA */
.output-area {
    text-align: left !important;
    border: 1px solid #c0c0c0;
    background: #fafafa;
    padding: 14px;
    min-height: 220px;
   border-radius: 6px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #222;
    /*white-space: pre-wrap;*/
  overflow-y: auto;
}

    /* Optional horizontal layout for short answers */
    .output-area.answers-inline div {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-right: 20px;
    }

    /* QUIZ CHECKBOXES */
    .output-area input[type="checkbox"] {
        margin-right: 6px;
        transform: scale(1.1);
    }

 
