/* PWA Install Prompt Styles for ReallyEZfare */

/* Reset and Base Styles for PWA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f1f3f5;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

/* PWA Install Prompt */
.install-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4682B4, #2E5984);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: white;
}

.install-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.install-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.install-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.9;
}

.install-btn {
    background: white;
    color: #4682B4;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.install-btn:hover {
    transform: scale(1.05);
}

.install-help {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* Hide main content when install prompt is shown */
.install-prompt ~ .screen {
    display: none;
}
