html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.footer {
    position: relative !important;
    bottom: auto !important;
    margin-top: 0 !important;
    background-color: white;
}

/* Add this to your CSS file */
.custom-navbar {
    background-color: #fdd040 !important;
    color: black !important;
}

    /* If you want the navbar brand and links to also be white */
    .custom-navbar .navbar-brand,
    .custom-navbar .nav-link {
        color: #212529 !important;
    }

    /* For dropdown items to maintain readability */
    .custom-navbar .dropdown-menu {
        color: #212529 !important; /* Default text color for dropdowns */
    }

    .custom-navbar .dropdown-item {
        color: #212529 !important;
    }

        .custom-navbar .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #FCC30E !important;
        }


/*html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/

.btnExcel {
    background: none;
    color: black;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.btnExcelLayout {
    background: none;
    color: white;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.toggle-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

html, body {
    overflow-x: auto;
}

/* Reset body styles */
body {
    display: block !important;
    height: auto !important;
    background-color: rgb(11, 132, 61);
    font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#divContainer {
    flex: none !important;
}

.header {
    background-color: #fdd040;
}

.page-header {
    text-align: center;
    /*border-bottom: 1px solid;*/
    border-color: #198754;
}

.form-design {
    border: 2px solid;
    border-color: #FCC30E;
    margin: 10px;
    border-radius: 7px;
    color: black;
    background-color: white;
}

.list-design {
    border: 2px solid;
    border-color: #FCC30E;
    margin: 10px;
    padding-left: 0px;
    border-radius: 7px;
    color: black;
    background-color: white;
}

/*Adapted from https://www.youtube.com/watch?v=HoLyH5zQXqs - Animated Circular Our Team UI Design using CSS & Vanilla Javascript | Radial Team Section*/
.rBody {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff;
} 

.rContainer{
    position : relative;
    width: 600px;
    height: 600px;
    /*border: 2px solid black;*/
    border-radius: 50%;
}

.rContainer .rIcon{
    position : relative;
    left: -50%;
    width : 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.rContainer .rIcon .rImgBox{
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: 0.5s;
    border: 1px solid black;
    box-shadow: 0 0 0 0, 0 0 0 6px #0b843d;
    transform: rotate(calc(360deg/8 * var(--i)));
    transform-origin: 340px;
    z-index : 100;
    overflow: hidden;
}

.rContainer .rIcon .rImgBox.active{
    box-shadow: 0 0 0 3px #222, 0 0 0 12px #FCC30E;
}

.rContainer .rIcon .rImgBox img{
    position : absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform: rotate(calc(-360deg/8 * var(--i)));
    transition: 0.5s;
    filter: grayscale(1);
}

.rContainer .rIcon .rImgBox.active img{
    filter: grayscale(0);

}

.rContent {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rContent::before{
    content: '';
    position: absolute;
    inset: 60px;
    border: 4px solid transparent;
    border-left: 4px solid #FCC30E;
    border-right: 4px solid black;
    border-radius: 50%;
    animation: animte_01 5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes animte_01{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.rContent::after {
    content: '';
    position: absolute;
    inset: 120px;
    border: 4px solid transparent;
    border-left: 4px solid #0b843d;
    border-right: 4px solid black;
    border-radius: 50%;
    animation: animte_02 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes animte_02 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.rContentBox{
    position : absolute;
    transform: scale(0);
    transition: 0.5s;
    opacity: 0;
    display: flex;
    justify-content : center;
    align-items : center;
}

.rContentBox.active{
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.5s;

}

.rContentBox .rCard{
    position : relative;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction:column;
    gap:15px;
}

.rContentBox .rCard .rImgBox{
    position: relative;
    width: 150px;
    height : 150px;
    border-radius: 10px;
    overflow: hidden;
}


.rContentBox .rCard .rImgBox img{
    position: absolute;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.rContentBox .rCard .rTextBox{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rContentBox .rCard .rTextBox h2{
    position: relative;
    font-size: 1.25em;
    font-weight : 600;
    color : #0b843d;
    line-height : 1em;
    text-transform: uppercase;
    text-align: center;

}

.rContentBox .rCard .rTextBox h2 a{
    font-size: 0.65em;
    color: #FCC30E;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.rContentBox .rCard .rTextBox h2 span{
    font-size: 0.65em;
    color: #FCC30E;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.rContentBox .rCard .rTextBox .rSci{
    position: relative;
    display: flex;
    gap: 7px;
    margin-top: 10px;
}

.rContentBox .rCard .rTextBox .rSci li{
    list-style: none;
}

.rContentBox .rCard .rTextBox .rSci li a{
    position: relative;
    /*width: 30px;
    height: 30px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.5s;
}

.rContentBox .rCard .rTextBox .rSci li a:hover{
    background : #FCC30E;
}