/* PWA Install Banner */
.pwa-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: none;
    /* Hidden by default */
    z-index: 1000;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
}

.pwa-banner h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.pwa-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pwa-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pwa-icon img {
    width: 80%;
    height: auto;
}

.pwa-btn {
    background-color: #0099ff;
    /* Bright Blue */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pwa-dismiss {
    display: block;
    margin-top: 10px;
    color: #4CAF50;
    /* Greenish/Yellowish from screenshot text seems green */
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.pwa-timer {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #ccc;
}