
        /* Vollbild-Overlay mit Sanduhr */
        #loading-overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.7);
            display: none; /* Standardmäßig ausgeblendet */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        /* Sanduhr-Animation */
        .hourglass {
            width: 50px;
            height: 50px;
            border: 5px solid #fff;
            border-radius: 50%;
            border-top: 5px solid transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
