﻿/* Wrapping element */
/* Ensure body uses flexbox for layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure full viewport height */
    margin: 0;
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure form stretches to fill space */
form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Footer styles */
footer {
    background-color: #343a40; /* Dark background */
    color: white;
    text-align: center;
    padding: 10px;
}

/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

.bg-golden {
    background-color: #e4901d;
}

.btn-golden {
    color: #000000;
    background-color: #e4901d;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37
}

.btn-check:focus + .btn-golden, .btn-golden:focus {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-check:active + .btn-golden, .btn-check:checked + .btn-golden, .btn-golden.active, .btn-golden:active, .show > .btn-golden.dropdown-toggle {
    color: #fff;
    background-color: #b02a37;
    border-color: #a52834
}

    .btn-check:active + .btn-golden:focus, .btn-check:checked + .btn-golden:focus, .btn-golden.active:focus, .btn-golden:active:focus, .show > .btn-golden.dropdown-toggle:focus {
        box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
    }

.btn-golden.disabled, .btn-golden:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.border-collaspe {
    border-collapse: collapse;
}

.LockOn {
    display: block;
    visibility: visible;
    position: absolute;
    z-index: 999;
    top: 0px;
    left: 0px;
    width: 105%;
    height: 105%;
    background-color: white;
    vertical-align: bottom;
    padding-top: 20%;
    opacity: 0.75;
    font-size: large;
    color: blue;
    font-style: italic;
    font-weight: 400;
    background-image: url("../Common/loadingGIF.gif");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.scrolling-text {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    position: relative;
}

    .scrolling-text::before,
    .scrolling-text::after {
        content: "";
        position: absolute;
        top: 0;
        width: 10%;
        height: 100%;
        z-index: 1;
    }

    .scrolling-text::before {
        left: 0;
    }

    .scrolling-text::after {
        right: 0;
        transform: rotateY(180deg);
    }

    .scrolling-text span {
        display: inline-block;
        padding-left: 10%;
        animation: scroll-left 50s linear infinite;
    }

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-80%);
    }
}

.ht-5px {
    height: 5px;
}

.ht-10px {
    height: 10px;
}

.ht-15px {
    height: 15px;
}

.ht-20px {
    height: 20px;
}

.ht-25px {
    height: 25px;
}

.ht-30px {
    height: 30px;
}

.ht-35px {
    height: 35px;
}

.ht-40px {
    height: 40px;
}

.ht-45px {
    height: 45px;
}

.ht-50px {
    height: 50px;
}

.ht-55px {
    height: 55px;
}

.ht-60px {
    height: 60px;
}

.ht-65px {
    height: 65px;
}

.ht-70px {
    height: 70px;
}

.ht-75px {
    height: 75px;
}

.ht-80px {
    height: 80px;
}

.ht-85px {
    height: 85px;
}

.ht-90px {
    height: 90px;
}

.ht-95px {
    height: 95px;
}

.ht-100px {
    height: 100px;
}

.fixed-top_nav {
    position: fixed;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 1030;
}

.badge-container {
    display: flex;
    justify-content: space-between; /* Align label on the left and badge on the right */
    align-items: center; /* Vertically align the items */
    margin-bottom: 5px; /* Space between rows */
    padding: 0.25rem;
    padding-right: 1.5rem !important;
    border-radius: 1.5rem !important;
}
