html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f6f6f7;
    font-family:
      -apple-system,
      BlinkMacSystemFont,
      "SF Pro Display",
      sans-serif;
}

#splash-container {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    z-index: 9999;
    background: #ff6600;
    transition: opacity .4s ease;
}

#logo {
    width: 80px;
    height: 80px;
    animation: appleIntro 0.8s ease-out;
}

@keyframes appleIntro {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide file input elements created by Flutter web plugins (e.g. image_picker_for_web) */
flt-image-picker-inputs,
input[type="file"] {
    display: none !important;
    position: fixed !important;
    top: -9999px !important;
    left: -9999px !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}