html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Loader sits behind the Compose <canvas> ComposeViewport attaches to <body>.
   Once Compose paints, the canvas covers the loader visually, no JS hook
   needed. Stays in DOM but is permanently occluded. */
#loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #1f6feb;
    pointer-events: none;
    z-index: 0;
}

#meta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    text-align: center;
    font-size: 12px;
    color: #555;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    z-index: 10;
    pointer-events: auto;
}

#meta a {
    color: #1f6feb;
    text-decoration: none;
}

#meta a:hover {
    text-decoration: underline;
}
