/* Simple reset */
body, h1, div {
    
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* Align items to the sides */
    align-items: center;
}
a {
    color: white;
}

.full-width-image{
  width: 300%;
  height: auto;  
 }

.config-tab {
    padding: 10px;
    margin-right: 5px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
}

.config-tab.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #0056b3;
}

#sessions-container table {
    border-collapse: collapse;
    width: 100%;
}

#sessions-container th, #sessions-container td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#sessions-container th {
    background-color: #f2f2f2;
    color: #333;
}

#sessions-container tr:nth-child(even) {
    background-color: #f9f9f9;
}

#sessions-container tr:hover {
    background-color: #eaeaea;
}

/*** Styles for the schedule container ***/
#schedule-container {
    grid-column: 1 / -1; /* Spans from the first to the last column */
    grid-row: 1 / -1; /* Spans from the first to the last row */
    /* Additional styling as needed */
}


#schedule-container table {
    border-collapse: collapse;
    width: 100%;
}

#schedule-container th, #schedule-container td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#schedule-container th {
    background-color: #f2f2f2;
    color: #333;
}

#schedule-container tr:nth-child(even) {
    background-color: #f9f9f9;
}

#schedule-container tr:hover {
    background-color: #eaeaea;
}



#svg-placeholder {
    height: 300px;
    background: #f3f3f3;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}






