﻿#dvChitarKhojiLoader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensures it takes up the full height of the parent */
    position: absolute; /* Position it absolutely within the offcanvas */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 1050; /* Ensure the loader appears above other content */
}

.offcanvas-body {
    position: relative; /* To allow absolute positioning of the loader */
    min-height: 100vh; /* Make sure the body takes full height of the viewport */
    background-color: #fff; /* Set background color (e.g., white) */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 6px; /* Optional: Shadow effect behind the offcanvas */
}

/* Optional: To add a fade-in effect when the loader appears */
#dvChitarKhojiLoader {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*.modal {
    display: none;*/ /* Hidden by default */
    /*position: fixed;
    z-index: 1;*/ /* Sit on top */
    /*left: 0;
    top: 0;
    width: 100%;*/ /* Full width */
    /*height: 100%;*/ /* Full height */
    /*overflow: auto;*/ /* Enable scrolling if needed */
    /*background-color: rgb(0,0,0);*/ /* Black with opacity */
    /*background-color: rgba(0,0,0,0.8);*/ /* Black background with opacity */
/*}*/

/* Modal Content */
/*.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;*/ /* Width of the modal */
    /*max-width: 600px;*/ /* Max width */
/*}*/

/* Close button */
/*.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
*/