/* Custom CSS for the splash message */
.splash-message {
    position: fixed;
    top: 60px; /* Adjust top margin as needed */
    right: 10px; /* Adjust right margin as needed */
    width: 25%;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    display: none;
    z-index: 9999;
    animation: slideInDown 0.5s ease-out;
    text-transform: uppercase;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/* Close icon style */
.dismiss-btn {
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    float: right;
}
/* Dismiss button style */
.dismiss-btn {
    cursor: pointer;
}

/* Loading image */
#document_loader {
    display: none;
}
.loading-container {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.loading-container img {
    width: 120px;
    height: 120px;
}
