/* Stylesheet with specified color scheme */

:root {
    --primary-light: #008847;
    --primary-dark: #106550;
    --neutral1: #DEDCD3;
    --neutral2: #E5EFF0;
    --neutral3: #E5EFF0
    --white: #FFFFFF;
    --accent: #E5F3ED;
    --dark-text: #20201E;
}

/* ----------- Styles for the conference header ----------- */

/* Previous styles */

/* Hide the conference title container */
.confTitleBox {
    display: none;
}
.confTitleBox {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-bottom: 1px solid var(--neutral1);
    min-height: 90px;
}

.confLogoBox img {
    width: 250px;  /* Set your desired width */
    height: auto;  /* Maintain aspect ratio */
    max-height: 90px; /* Optional: limit height to fit within header */
}

.conference-title-link {
    color: var(--white);
    font-size: 0rem;
    flex-grow: 1;
}

/* ----------- Styles for the subtitle section ----------- */

.confSubTitleBox {
    background-color: var(--neutral2);
    padding: 0.5rem 20px;
    border-bottom: 1px solid var(--neutral1);
}

.confSubTitleContent, .confSubTitle a {
    color: var(--dark-text);
    font-size: 1rem;
}

.confSubTitle a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* ----------- Styles for main content and menu ----------- */

#confSectionsBox {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: var(--white);
}

.conf_leftMenu {
    width: 200px;
    float: left;
}

#outer {
    border: 1px solid var(--neutral1);
    background-color: var(--white);
    padding: 10px;
}

#outer li a {
    color: var(--dark-text);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    padding: 7px 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#outer li a:hover {
    background-color: var(--accent);
    color: var(--white);
}

.menuConfTitle.selected > a,
.confBodyBox {
    background-color: var(--white);
    color: var(--dark-text);
    border-bottom: 1px solid var(--neutral1);
}

/* ----------- Styles for announcements and support box ----------- */

.simpleTextAnnouncement {
    background-color: var(--neutral3);
    color: var(--dark-text);
    padding: 8px 20px;
    border-top: 1px solid var(--neutral3);
}

.support_box {
    background-color: var(--white);
    border: 1px solid var(--neutral1);
}

.support_box > h3 {
    color: var(--primary-dark);
    background-color: var(--accent);
    padding: 10px;
}

/* Ensure accessibility with sufficient contrast and clear typography */