/* Ekran startowy PWA */
#psm-pwa-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.5s ease;
}

/* Zawartość ekranu */
.psm-pwa-splash-content {
    text-align: center;
}

/* Logo */
.psm-pwa-splash-content img {
/*    width: 180px;*/
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
}

/* Nazwa */
.psm-pwa-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

/* Adres strony */
.psm-pwa-subtitle {
    margin-top: 6px;
    font-size: 16px;
    color: #777;
}

/* Animacja znikania */
#psm-pwa-splash.hide {
    opacity: 0;
    pointer-events: none;
}
#psm-install-pwa {
    text-align: center;
    margin: 20px auto;
    max-width: 500px;
}

#psm-install-button {
    display: block;
    margin: 15px auto 0;
}