/* styles.css */

/* Existing Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #bcece0;
    color: #4c5270;
    margin: 0;
    padding: 0;
}


.page-header {
    background-color: #4c5270;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.page-header img {
    max-width: 200px;
    height: auto;
}

.page-header h1 {
    margin: 10px 0 5px 0;
    font-size: 2em;
}

.page-header h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: normal;
}



main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative; /* For positioning the table of contents */
}

aside.table-of-contents {
    float: right; /* Float to the right */
    width: 250px; /* Fixed width */
    background-color: #4c5270;
    color: #bcece0;
    padding: 15px;
    border-radius: 8px;
    margin-left: 20px; /* Space between ToC and content */
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

aside.table-of-contents h3 {
    margin-top: 0;
    font-size: 1.1em;
    border-bottom: 1px solid #bcece0;
    padding-bottom: 5px;
    color: #ffffff; /* White color for the heading */
}

aside.table-of-contents ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

aside.table-of-contents li {
    margin-bottom: 8px;
}

aside.table-of-contents a {
    color: #ffffff; /* White color for hyperlinks */
    text-decoration: none;
}

aside.table-of-contents a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
}



.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
.logo-container img {
    height: 64px;
  }
.logo-container p {
    margin: 0;
  }



/* New Styles for the Custom List */
.custom-list {
    list-style: none;       /* Removes the default bullet points */
    padding-left: 0;        /* Removes the default padding */
    margin-left: 30px;      /* Adds left margin to indent the list */
}

.custom-list li {
    margin-bottom: 8px;     /* Optional: Adds space between list items */
    /* Optional: You can adjust the padding or indentation further if needed */
    /* padding-left: 5px; */
}


h2 {
    color: #4c5270;
    border-bottom: 2px solid #bcece0;
    padding-bottom: 5px;
}

h3 {
    color: #4c5270;
    margin-top: 20px;
}

ul, ol {
    margin-left: 20px;
    line-height: 1.6;
}

ul ul, ol ul {
    margin-left: 40px;
}

.program-committee ul {
    list-style-type: none;
    padding: 0;
}

.program-committee li {
    margin-bottom: 5px;
}

.important {
    background-color: #e0f7fa;
    padding: 15px;
    border-left: 5px solid #4c5270;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4c5270;
    color: #bcece0;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #3a3f58;
}

footer {
    background-color: #4c5270;
    color: #bcece0;
    text-align: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

a {
    color: #4c5270;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.program-committee {
    column-count: 2;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .program-committee {
        column-count: 1;
    }

    /* Responsive Table of Contents */
    aside.table-of-contents {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }



}

/* New Styles for Table of Contents */
.table-of-contents {
    /* These styles are already covered by aside.table-of-contents */
}

/* Optional: Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


