

body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #f8f8fa;
}



.image-container {
    padding: 20px; /* Adjust the padding as needed */
    margin: 20px auto; /* Center the container */
    background-color: #f8f8fa; /* Optional: Add background color for better visualization */
    text-align: center; /* Center the image within the container */
}
.unique-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .image-container {
    padding: 10px; /* Reduce padding for smaller screens */
    margin: 10px auto; /* Adjust margin for smaller screens */
    }
}
@media (max-width: 480px) {
    .image-container {
    padding: 5px; /* Further reduce padding for very small screens */
    margin: 5px auto; /* Adjust margin for very small screens */
    }
}


.centered {
    text-align: center;
}

.navbar {
    background-color: #ededf7;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 0;
    min-height: 50px;
    padding: 0 10px; /* Added padding */
    display: flex;
    justify-content: space-between; /* Ensure items are spaced out */
    align-items: center; /* Vertically center items */
}

.header-logo {
    display: inline-block;
    width: 32px; /* Adjust the width and height as needed */
    height: 32px; /* Adjust the width and height as needed */
    background-image: url(../img/bigsherm.us.icon.32x32.png);
    background-size: contain; /* Adjust the background-size as needed */
    vertical-align: middle;
}

.navbar-brand {
    vertical-align: middle; /* Vertically align the text in the middle */
    font-family: 'Rubik', sans-serif; /* Add the font family you wish to use */
    color: #1b3644;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hamburger-menu {
    color: #1b3644; /* Change the color to make it visible */
}

/* Navbar toggler for mobile */
.navbar-toggler {
    border-color: transparent;
    color: #1b3644; /* Change the hamburger color */
}

.navbar-toggler-icon {
    background-color: #1b3644; /* Change the hamburger color */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    /* color: #212529; */
    text-align: left;
    list-style: none;
    /* background-color: #fff; */
    background-clip: padding-box;
    /* border: 1px solid rgba(0,0,0,.15); */
    border-radius: .25rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #007bff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}


.modal-header {
    background-color: #007bff;
    color: white;
}
.modal-body p {
    margin-bottom: 0;
}
.modal-footer {
    margin: auto;
}

.notice { 
    padding: 15px; 
    margin: 10px 0; 
    border: 1px solid #ac92fa; 
    border-radius: 5px; 
    background-color: #e5e1ff; 
    position: relative; 
}