﻿pre {
    overflow-x: auto;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}
/* Pagination links */
.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    -webkit-box-shadow: 10px 12px 6px -2px rgba(0,0,0,0.24);
    box-shadow: 10px 12px 6px -2px rgba(0,0,0,0.24);
}

    /* Style the active/current link */
    .pagination a.active {
        background-color: dodgerblue;
        color: white;
    }

    /* Add a grey background color on mouse-over */
    .pagination a:hover:not(.active) {
        background-color: #ddd;
    }

.section {
    margin: 16px;
}

.rebutton {
    color: #fff;
    border: none;
    padding: 10px 40px;
    background-color: darkblue;
    border-radius: 4px;
    height: 40px;
    transition: all linear 0.2s;
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* Make the top bar fully white */
.navbar-light.bg-white {
    background-color: #fff !important;
}

/* Remove any gradient from the sidebar and nav menu */
.sidebar, .sidebarhide, .nav-menu-area {
    background-color: #fff !important;
    background-image: none !important;
    color: #000; /* black text */
}

/* For the orange nav menu area */
.nav-menu-area {
    background-color: #fff; /* #f79d32; */
    /* If you prefer white text for nav links in this area: */
    color: #000; // /* #fff; */
}

/* Normal nav links in the sidebar: black text */
.nav-menu-area .nav-link {
    color: #000 !important;
}

/* Hover effect (optional) */
.nav-menu-area .nav-link:hover {
    background-color: #f2f2f2;
}


/* Active/selected nav link style */
.nav-menu-area .nav-link.active {
    background-color: #f79d32; /* example complement or darker orange */
    color: #fff;
}

.navbar-light.bg-white {
    background-color: #fff !important;
}

body, .page, main {
    background-color: #fff !important;
}

.content {
    background-color: #fff !important;
}

/*.top-row {
    height: 3.5rem;
    background-color: #fff !important; !* Force white, kills the gray overlay *!
}*/

/* In site.css or a similar file, overriding any existing .top-row rules */
.top-row {
    display: flex;
    align-items: center;       /* Vertically center icon/text */
    justify-content: space-between; /* Space between left & right sections */
    height: 4rem !important;             /* Increase as needed for a taller bar */
    background-color: #fff !important;   /* If you want a white bar */
    /* Remove or override any previously set background-color or height */
}

.logo-box {
    /* Define the container size you want */
    width: 220px;    /* Example width */
    height: 60px;    /* Example height */

    /* Center the image horizontally + vertically */
    display: flex;
    align-items: center;
    justify-content: flex-start !important;

    /* Optional styling for visibility */
    /* border: 1px solid #666; */
    background-color: #fff;
    /* border-radius: 4px; */
    /* padding: 8px; <-- You can add padding if you want extra space */
}

.logo-box img {
    /* Don’t exceed the container’s width/height */
    max-width: 100%;
    max-height: 100%;

    /* Make the image scale (preserving aspect ratio) inside the container */
    object-fit: contain !important;
    /* object-fit: cover; contain <-- if you want the image to *fill* the box (cropping edges) */
}

/* Hide scrollbars across all elements (or target specific elements instead) */

/* 1) For Chrome, Safari, and Opera */
::-webkit-scrollbar {
    width: 0;            /* Remove scrollbar space */
    height: 0;
    background: transparent; /* Optional, can also use display: none; */
}

/* 2) For Internet Explorer 10+ and Edge */
* {
    -ms-overflow-style: none; /* Disables scrollbar on IE/Edge */
}

/* 3) For Firefox */
* {
    scrollbar-width: none; /* Hides scrollbar on Firefox */
}