:root {
    --obaroRed: #D35942; /* Replace with your primary color code */
    --obaroGreyDark: #58595b; /* Replace with your secondary color code */
    --obaroGreyMedium: #bdbdbd; /* Replace with your secondary color code */
    --obaroGreyLight: #efefef; /* Replace with your secondary color code */
    --obaroBlue: #006581;
    --obaroGreen: #689136;
    --obaroYellow: #F7AD00;
    --obaroPurple: #82284A;
    --obaroTealLight: #3EBFBC;
    --obaroTealMedium: #39b0ad;
    --obaroTealDark: #216665;
    --obaroMint: #77A4A1;
    --obaroGreenGrey: #596F70;
    --obaroBrownDark: #6D6462;
    --obaroBrownLight: #816D6C;
    --obaroOrange: #D35942;
    --obaroPink: #C88080;
    --obaroRose: #A55258;
    --obaroMauve: #63424C;
    --obaroMauveBrown: #4F3D40;
    --infogroBlue: #7ED0E4; /* Replace with your secondary color code */
    --truGardenBlue: #0881AE;
    --AfrKkkGreen: #158139;
}

/** btn-danger met Obaro Rooi **/
.btn-danger {
    background: var(--obaroRed);
    border-color: var(--obaroRed);
    font-style: normal;
}

.btn-danger:hover {
    background: #ae4a37;
}

.btn-danger.focus, .btn-danger:focus {
    background: #ae4a37 !important;
    border-color: var(--obaroRed) !important;
}

.btn-danger.active, .btn-danger:active {
    background: #ae4a37 !important;
    border-color: var(--obaroRed) !important;
}

/** btn-info met Obaro Blou **/
.btn-info {
    background: var(--obaroBlue);
    border-color: var(--obaroBlue);
    font-style: normal;
    color: white;
}

.btn-info:hover {
    background: #005368;
    border-color: #005c75;
    color: white;
}

.btn-info.focus, .btn-info:focus {
    background: #006581FF !important;
    border-color: var(--obaroBlue) !important;
    color: white;
}

.btn-info.active, .btn-info:active {
    background: #006581FF !important;
    border-color: var(--obaroBlue) !important;
    color: white;
}

.card {
    margin-bottom: 10px;
}

.card-body {
    padding: 10px;
}

/*.card-header {*/
/*    padding: 15px;*/
/*}*/

.btn-full {
    width: 100%;
}

.dropdown-menu {
    margin-bottom: 15px;
}

.dropdown-header {
    font-size: 1rem;
}

.modal-lg > .modal-dialog {
    max-width: 80%;
}

.media {
    border: 1px solid #dee2e6; /* Border color similar to Bootstrap's default border */
    border-radius: .25rem; /* Rounded corners */
    padding: .5rem;
    background-color: #f8f9fa; /* Background color similar to Bootstrap's default */
}

.media {
    text-decoration: none;
    color: var(--obaroGreyDark);
    width: 100%;
}

.media:hover {
    color: var(--obaroRed);
}

.btn i {
    font-style: normal;
}

.circle {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    -webkit-animation: rotate linear infinite;
    animation: rotate linear infinite;
}

.circle.one {
    height: 50px;
    width: 50px;
    left: 50px;
    top: 50px;
    border-top-color: var(--obaroGreyDark);
    -webkit-animation-duration: 0.85s;
    animation-duration: 0.85s;
}

.circle.two {
    height: 75px;
    width: 75px;
    top: 38px;
    left: 38px;
    border-top-color: var(--obaroRed);
    -webkit-animation-duration: 0.95s;
    animation-duration: 0.95s;
}

.circle.three {
    height: 100px;
    width: 100px;
    top: 25px;
    left: 25px;
    border-top-color: var(--obaroGreyMedium);
    -webkit-animation-duration: 1.05s;
    animation-duration: 1.05s;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -90px 0 0 -90px;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
    to {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
    to {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

#loading-image {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999 !important; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.2); /* Black with opacity */
}

.text-obaroRed {
    color: var(--obaroRed);
}

.nav-link {
    color: var(--obaroGreyMedium);
}

.nav-link:hover {
    color: var(--obaroGreyDark);
}
