/* أنماط شاشة البداية - مطابقة للتطبيق السابق */
#app-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

#app-splash-screen img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

#app-splash-screen h1 {
    font-family: 'Tajawal', sans-serif;
    font-size: 28px;
    color: #4CAF50;
    margin: 0;
}

#app-splash-screen p {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 10px 0 0 0;
}

#app-splash-screen .spinner {
    margin-top: 30px;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    border-top-color: #4CAF50;
    animation: app-splash-spin 1s ease-in-out infinite;
}

@keyframes app-splash-spin {
    to { transform: rotate(360deg); }
}

.app-splash-fade-out {
    opacity: 0 !important;
}

/* دعم وضع التطبيق المستقل PWA */
@media (display-mode: standalone) {
    body.app-body {
        padding-top: 0 !important;
    }
}

body.app-body.standalone {
    padding-top: 0 !important;
}
