/* Global styles */
body {
    background-color: rgb(20,20,20);
    color: white;
    font-family: "Avenir Light", Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#loginFormDiv {
    background-color: transparent;
}

.fade-to-white {
    transition: background-color 0.5s, opacity 0.5s;
    background-color: rgb(255, 255, 255);
    opacity: 0;
}

/* Spinner overlay */
.metrics-loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
    z-index: 100;
}


.metrics-loading-overlay2 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(245,245,245);
    z-index: 100000;
}



/* Spinner animation */
.metrics-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #2196f3;
    border-radius: 50%;
    animation: metrics-spin 1s linear infinite;
}

@keyframes metrics-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}