/* HTML styles for the splash screen — Catppuccin Mocha palette */
.sending-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #1e1e2e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}

.splash-brand {
    font-size: 2.5rem;
    font-weight: 700;
    color: #cdd6f4;
}

.splash-status {
    font-size: 1.1rem;
    font-weight: 400;
    color: #a6adc8;
}

.splash-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #313244;
    border-top-color: #89b4fa;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.avalonia-splash.splash-close {
    transition: opacity 200ms, display 200ms;
    display: none;
    opacity: 0;
}
