﻿.active {
    background-color: #e8ecf3;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#footer {
    background-color: #fff; /* You can change the background color as needed */
    color: #fff; /* You can change the text color as needed */
    padding: 20px 0;
    text-align: center;
    margin-top: auto; /* Push the footer to the bottom */
}

/* CSS for the loader */
.loader-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999; /* Set a higher z-index to ensure it appears on top */
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bi-chevron-down::before {
    content: "\f282";
    font-size: 12px !important;
}

.custom-styles {
    text-align: right !important;
    margin-top: -4vh !important;
}

.container {
    position: relative;
    max-height: 75vh;
    width: 100%;
    overflow: hidden;
}

#image-container {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

#image {
    max-width: none;
    max-height: none;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s ease; /* Add smooth transition for zooming */
}

.clsExportExcel {
    color: darkgreen;
    text-align: center;
    font-size: 25pt;
}

.img-container {
    max-width: 100%;
    max-height: 100%;
}

.img-IconSize {
    font-size: 40px;
    padding: 20px;
}
