body {
    font-family: 'Roboto Mono', serif;
}

.forms-container{
    margin: 15px 150px 0px 150px; /* Top  Right Bottom Left*/ 
}

/*nav-bar section*/
.nav-bar_container {
    background-color: #fff;
    flex-direction: row;
    display: flex;
    height: 60px;
    width: 100%;
    padding: 15px;
    gap: 5%;
    z-index: 100;
    justify-content: center;
    align-content: center;
    align-items: center;
    vertical-align: middle;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-image: linear-gradient(90deg, #fff, #ddd 50%, #fff) 1;
}

.nav-bar_container a {
    display: block;
    color: #000;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease-in-out;
}

/*home-sections*/
.home_mainWrapper {
    padding-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.home_contentsWrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.home_aboutWrapper {
    width: var(--aboutWidth);
    margin: auto;
}

.about_imagebox{
    text-align: center;
    width: auto;
}

.about_imagebox img{
    max-width: 30%;
    height: auto;
    width: auto\9;
}

.about_information{
    margin: 50px;
    justify-content: center;
    text-align: center;
}

.footer { 
    width: 100%;
    justify-content: center;
    background-color:  #ffcd00;
    padding: 0.5rem;
    font-size: 14px;
    bottom: 0;
    left: 0;
    /* margin-top: 100px; */
}

.footer-info{
    display: grid;
    grid-template-columns: 30% 30% 30%; 
    flex-direction: column;
    grid-gap: 20px;
    gap: 50px;
    margin: 5px 10px 0px 10px; 
} 

.footer a{
    color: inherit;
    text-decoration: inherit;
}

.scenarios-list{
    margin: 15px 150px 0px 150px; /* Top  Right Bottom Left*/ 
}


/* About Information */
.about_information {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.about_information h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.about_information p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
}

/* Team Section */
.team_section {
    text-align: center;
}
.team_section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Team Grid */
.team_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.team_member {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team_member .headshot {
    width: 100%;
    max-width: 120px;
    height: 100%;            /* Ensures square aspect ratio */
    object-fit: cover;        /* Crops to fill the square */
    object-position: center;  /* Center the focus */
    border-radius: 50%;
    margin-bottom: 10px;
}
.team_member h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
}
.team_member p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.card{
    padding: 15px;
    border-color:#ffcd00 ;
    border-width: 3px;
    margin: 25px 25px 25px 25px;
    text-align: center;
}



@media (max-width: 1000px) {
    .nav-bar_container{
        font-size: 10px;
    }

    .about_imagebox img{
        max-width: 80%;
    }

    .about_information h3{
        font-size: 16px;
    }

    .footer-info{
        display: grid;
        grid-template-columns: 90% ; 
        flex-direction: column;
        font-size: 10px;
        grid-gap: 15px;
        gap: 15px;
        margin: 5px 10px 0px 10px; 
    } 

    .about_information{
        margin: 30px;
        justify-content: center;
        text-align: left;
    }


  }
.settings-container {
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    max-width: 300px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.settings-container form {
    margin: 0;
}


