/* ========================================
   Splash Screen Styles
   Auto-generated by BW.Framework.WebApp
   Generated at 00:39:38 on 12/27/2025 
   Safe to customize - will never be overwritten
   ======================================== */

.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;  /* Customize background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.splash-overlay.closing {
    opacity: 0;
}

.splash-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.splash-logo {
    /* Display at natural resolution */
    width: auto;
    height: auto;
    opacity: 1;
    border: none !important;
    outline: none !important;
    display: block;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
}

.splash-logo.fade-in {
    opacity: 0;
    animation: logoFadeIn 500ms ease-in forwards;  /* Customize fade duration */
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.splash-skip-button {
    font-size: 0.875rem;  /* Customize size */
    color: rgba(0, 0, 0, 0.6);  /* Customize color */
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.splash-skip-button:hover {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}

.splash-skip-button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    border-radius: 2px;
}
