/**
 * Loaded from index.html <head> so #static-splash is styled before the JS bundle
 * (index.css only loads with main.tsx). Keep rules in sync when changing splash look.
 */
.static-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 9999;
}

.static-splash__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.static-splash__logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.static-splash__title {
    font-size: 2.125rem;
    font-weight: 600;
    color: #1976d2;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
