﻿/*//============ For Loader ====================*/

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#loader img {
    width: 100%;
    height: 100%;
}

#pageOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.highlight {
    background-color: #90ee90;
}

/*//============ For Custom Scroll ====================*/

.custom-scroll {
    overflow: auto;
}
    /* Custom Scrollbar */
    .custom-scroll::-webkit-scrollbar {
        width: 5px; /* Scrollbar width */
        height: 8px; /* Horizontal scrollbar height */
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: #f1f1f1; /* Track color */
        border-radius: 4px;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background: #007bff; /* Scroll thumb color */
        border-radius: 4px;
    }

        .custom-scroll::-webkit-scrollbar-thumb:hover {
            background: #0056b3; /* Hover color */
        }

/*//============ For HR Tag ====================*/

hr {
    height: 1px !important;
    background-color: black;
    border: none!important;
}