/* ==========================================================================
   Author's custom styles
   ========================================================================== */

html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 120px;
  padding-top: 50px;
  padding-bottom: 20px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 120px;
    background-color: #3399f3;
    vertical-align: middle;
    color: white;
    padding-top: 20px;
    margin-top: 30px;
}  


.jumbotron {
    margin-bottom: 0px;
    background-image: url(../images/pexels-lichtberlin-19689675.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.jumbotron .container {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
   /* margin-right:-20px;*/
}

.highlight {
    color: #3399f3;
}

.footer .highlight {
    color: #ffffff;
}

dd {
    margin-bottom: 9px;
}

.headshot {
    float: right;
    clear: right;
    margin-left: 8px;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.label a {
    color: white;
}

/* Added by ChaTo on 2019-12-26, avoids having targets of links hidden under header (header is 50px tall) */

h1:target, h2:target, h3:target {
  padding-top: 55px; 
  margin-top: -55px;
}

/* Added by ChaTo on 2023-05-16, colors for different parts of the program */

.crafts-online {
    background: #ffeaf4;
}
.papers {
    background: #dfffff;
}
.tutorials {
    background: #dfffff;
}
.plenary {
    background: #ffeaf4;
}
.research {
    background: #dfffe4;
}
.research-online {
    background: #ffeaf4;
}
.keynote {
    background: #ffffd5;
}
.crafts {
    background: #dfffff;
}
.hall {
    background: #f3ffff;

}
.food{
    background: #D8BFD8;
}
/* main.css */

/* Optional: Center the table on the page */
.table-wrapper {
    max-width: 800px; /* Adjust the max-width as needed */
    margin: 0 auto;   /* Centers the table */
}

/* Style the table */
.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #bbb;
}

.table-wrapper th,
.table-wrapper td {
    border: 1px solid #bbb;
    padding: 8px;
    vertical-align: top;
}

.table-wrapper th {
    background-color: #f2f2f2;
}

/* Optional: Improve readability on smaller screens */
@media (max-width: 600px) {
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
    }
}

/* Make the dl a flex container */
#important-dates dt, #important-dates dd {
    display: flex;
    align-items: center; /* Vertically centers content */
    margin-bottom: 5px; /* Adds consistent spacing between lines */
}

/* Optional: Ensure dt width is consistent */
#important-dates dt {
    min-width: 300px; /* Adjust width as needed */
    margin-right: 10px; /* Adds space between dt and dd */
    white-space: normal; /* Wrap text if too long */
}



