/* css/components/_loading.css */

/* Loading Overlay */
#loadingState {
    text-align: center;
    color: var(--color-gray-500);
    padding: 2.5rem;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    color: white;
    font-size: 1.2rem;
}
