/* Loader styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader-message {
    font-size: 1.2rem;
    text-align: center;
    max-width: 80%;
    margin-top: 1rem;
}

.loader-container.d-none {
    display: none;
}
