.mis-primary-color {
    background-color: #e6d1b2;
}

.mis-secondary-border {
    border-right: solid;
    border-right-color: #9f8f75;
    border-width: 10px;
}

.placeholder {
    background-color: #6e6e6e;


}

body {
    background-color: #c2c2c2;
}

.header-text-container {
    background: rgba(220, 220, 220, 0.5);
    min-height: 250px;
}

.content-container {
    box-shadow: 0px 8px 8px rgba(77, 77, 77, 0.5);
    background-color: #e6d1b2;
}

#next-page,
#prev-page {
  filter: invert(100%);
}


.mis-blue {
    color: #013946;
}

.content {
    background-color: white;
}

.history {
    background-color: white;
}

.header-image {
    /* min-height: 250px;
     */
    height: 250px; /* Fixed height relative to the viewport (100% of viewport height) */
    background-size: cover; /* Ensure the background image covers the entire div */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent image repetition */
    width: auto; /* Width adjusts based on the div size */
}

ul {
    list-style-image: url('../images/navi-ak.gif');
    text-decoration-color: #6D6E66;
    ;
}

a {
    color: #50504f;
    /* padding-left: 0% !important; */
}

.navbar-expand-lg .navbar-collapse {
    display: block !important;
}

.header-text2 {
    font-size: 0.7rem !important;
}

.mis-border {
    box-shadow: 0px 8px 8px rgba(77, 77, 77, 0.5);
}

.custom-divider {
    border-color: #c2c2c2;
}

.center-div {
    margin: auto;
    /* width: 50%; */
    /* border: 3px solid green; */
    /* padding: 10px; */
  }


.centered-text {
    text-align: center;
}

.circle-container {
    width: 100px; /* Width of the circle */
    height: 100px; /* Height of the circle */
    border-radius: 50%; /* Makes the div circular */
    border: 5px solid #9f8f75; /* Border acts as the circle outline */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hover-circle {
    display: inline-block;
    text-decoration: none; /* Removes underline from the link */
}

.hover-circle svg {
    padding: 10px;
    border-radius: 50%; /* Creates a circle around the svg */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
}

.hover-circle:hover svg {
    background-color: #f0f0f0; /* Circle highlight */
    transform: scale(1.1); /* Slight enlargement on hover */
    fill: #013946; /* Change the fill color of the SVG */
}

.hover-circle:hover {
    text-decoration: none; /* Ensure no underline appears on hover */
}