/* PWA Install Banner */
.pwa-install-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.pwa-install-banner.show {
    display: flex;
    transform: translateY(0);
}

.pwa-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    gap: 15px;
}

.pwa-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.pwa-text {
    flex-grow: 1;
}

.pwa-text h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.pwa-text p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

.pwa-install-btn {
    background-color: var(--ul-primary);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.pwa-install-btn:hover {
    background-color: var(--ul-secondary);
}

.pwa-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-close:hover {
    color: var(--ul-primary);
}

@media (max-width: 575px) {
    .pwa-content {
        gap: 10px;
    }

    .pwa-text h6 {
        font-size: 13px;
    }

    .pwa-text p {
        font-size: 11px;
    }
}