*{
    padding: 0;
    margin: 0;
}
body {
    min-height: 100vh;
  
}
.nav-container{
    width: 100%;
    max-width: 1200px;
}
.maincontent{
    max-width: 1150px;
}
.date-table{
    align-items: center;

}
.text-topic{
    margin-top: 2rem;
    margin-bottom:1rem;
    color:midnightblue;
}

.text-committee{
    margin-top: 2rem;
    margin-bottom:1rem;
    color:royalblue;
}

.date-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.date-list2 {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.date-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
}

.date-list li strong {
    color: var(--primary-color);
}

.committee-div{
    margin: 0 auto;
    max-width: 700px;
    padding-bottom: 2rem;
    /*padding-top: 1rem;
    border-bottom: royalblue dashed 2px;*/
}
.committee-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.committee-list li {
    padding: 0.5em 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
}

.committee-list li strong {
    color: var(--primary-color);
}

/*.date-list li:last-child {
    border-bottom: none;
}*/

/* Sponsors Section */

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}


footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
}

.navbar .navbar-nav .nav-link:hover{
    background-color: dimgray;
    color:white;
}

.active{
    color: white;
    font-weight: bold;
    
    
}



.dropdown-item{
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }

.dropdown-item:hover{
        background-color: dimgray;
}

.dropdown-item.active{
    color: white;
    font-weight: bold;
    background-color: dark;
}

@media screen and (min-width:992px){
    .nav-bar{
        padding: 0;
    }
}

.navbar .navbar-nav .nav-link{
    padding: 0.5em;
}

@media screen and (max-width:991px){
    .navbar-brand{
        padding-left: 0.7em;
    }
    .navbar-nav{
        padding-top: 0.5em;
    }
    .dropdown-item{
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }
    .dropdown-item:hover{
        
        background-color: dimgray;
    }
}


.map-container {
  position: relative;
  margin: auto;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  padding-bottom: 56.25%; /* Creates a standard 16:9 widescreen aspect ratio */
  height: 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul.pplist{
    counter-reset: list;
}
.pplist > li {
    list-style: none;
    position: relative;
}
.pplist > li:before {
    counter-increment: list;
    content: counter(list, lower-alpha) ") ";
    position: absolute;
    left: -1.4em;
}
.pplist span{
    font-weight: normal;
}