﻿.zoom-waiting-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    color: #444;
    padding: 20px;
}

    .zoom-waiting-screen h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

/* Simple loader circle */
.zoom-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top-color: #0078ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
