body {
    margin: 0;
    padding: 0;
    height: 98vh;
    background-color: #06060d;
}

.appDiv {
    height: 100vh;
    justify-content: center;
}

.table-container {
    transition: opacity 0.5s ease;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
    opacity: 1; /* Ensure full opacity */
}

.loading-content {
    text-align: center;
    width: 80%;
    max-width: 500px;
    opacity: 1; /* Ensure full opacity */
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background-color: #34495e;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.4), 
                0 0.25rem 0.5rem rgba(0, 0, 0, 0.3),
                0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 1; /* Ensure full opacity */
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3d7f80 0%, #459597 50%, #367e7d 100%);
    transition: width 0.3s ease;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(44, 81, 120, 0.5);
    animation: shimmer 1.5s infinite;
    background-size: 200% 100%;
    opacity: 1; /* Ensure full opacity */
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.progress-text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #4f7495;
    text-shadow: 0 2px 10px rgba(79, 116, 149, 0.5);
    font-family: "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    opacity: 1; /* Ensure full opacity */
}

.start-button {
    width: 15rem;
}
