/* Health Check Component Animations */
@keyframes rotate {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(360deg); 
    }
}

.health-icon.rotating {
    animation: rotate 2s linear infinite;
}

/* Health Status Indicator Styles */
.health-indicator {
    margin-right: 12px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.health-icon {
    transition: transform 0.2s ease;
}

.health-icon:hover {
    transform: scale(1.1);
}

.health-warning-banner {
    margin-bottom: 16px;
}

/* Application Initializer Styles */
.application-initializer {
    width: 100%;
    height: 100%;
}

.initialization-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.initialization-card {
    max-width: 500px;
    min-width: 400px;
    padding: 40px;
    margin: 20px;
    text-align: center;
}

@media (max-width: 480px) {
    .initialization-card {
        min-width: 90vw;
        padding: 20px;
    }
}