/* Set up the page layout and font */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Style the container with background and shadow */
.container {
    background: rgb(175, 199, 216);
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    text-align: center;
}

/* Arrange form inputs in a column */
.input-group {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Add spacing between form elements */
.spacer {
    height: 10px;
}

/* Style buttons with consistent colors */
button {
    padding: 10px;
    margin: 5px;
    border: none;
    background-color: #1c5490;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Adjust button color on hover */
button:hover {
    background-color: #0056b3;
}

/* Remove default list styling for menus */
ul {
    list-style: none;
    padding: 0;
}

/* Add spacing to list items in menus */
ul li {
    margin: 10px 0;
}

/* Style links in lists for navigation */
ul li a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

/* Change link color on hover */
ul li a:hover {
    color: #0056b3;
}

/* Team container for side-by-side layout */
.team-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allows some responsiveness on smaller screens */
    margin-bottom: 20px;
}

/* Individual team member styling */
.team-member {
    text-align: center;
}

/* Team image styling */
.team-image {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Circular images */
    object-fit: cover; 
    border: 2px solid #1c5490; 
}

/* Team member name styling */
.team-member p {
    margin: 5px 0 0 0;
    color: #1c5490;
    font-weight: bold;
}

/* styles for our team modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn {
    background-color: #1c5490;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: 100px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.close-btn:hover {
    background-color: #0056b3;
}