.fullscreen-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.fullscreen-loader .loader-box {
    text-align: center;
    /* background: white; */
    background: #000000de;
    /* padding: 30px; */
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    font-family: system-ui;
    backdrop-filter: blur(3px);
}
  
.fullscreen-loader .spinner {
    width: 40px; height: 40px;
    border: 4px solid #ccc;
    /* border-top: 4px solid #3498db; */
    border-top: 4px solid #fd7e14;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}
  
.fullscreen-loader .loader-text {
    margin-top: 15px;
    font-size: 16px;
    /* color: #333; */
    color: #ffffff;
}
  
@keyframes spin {
to { transform: rotate(360deg); }
}
  