/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.splash-logo {
    height: 40px;
    width: auto;
}

.splash-text {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    animation: blink 1.5s infinite;
    opacity: 1;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
