﻿
/* PWA Install Banner */

.pwa-install-banner {
    display: none;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 15px;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
    align-items: center;
    gap: 10px;
}

.pwa-install-icon img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.pwa-install-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .pwa-install-text strong {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .pwa-install-text span {
        font-size: 12px;
    }

.pwa-install-button {
    border: none;
    border-radius: 7px;
    padding: 9px 14px;
    cursor: pointer;
    font-weight: bold;
}

.pwa-install-close {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    padding: 2px 6px;
}

<style >

#pwaInstallPopup {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    padding: 15px;
}

.pwa-install-box {
    width: 420px;
    max-width: 95%;
    background: white;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    border: 1px solid #ddd;
}

.pwa-install-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: #f2f7ff;
}

.pwa-install-content {
    flex: 1;
}

    .pwa-install-content h3 {
        margin: 0 0 6px;
        font-size: 18px;
    }

    .pwa-install-content p {
        margin: 0 0 15px;
        font-size: 14px;
        color: #555;
        line-height: 1.4;
    }

.pwa-install-buttons {
    display: flex;
    gap: 10px;
}

    .pwa-install-buttons button {
        border: none;
        border-radius: 8px;
        padding: 9px 18px;
        cursor: pointer;
        font-size: 14px;
    }

#pwaInstallBtn {
    background: #1677ff;
    color: white;
}

#pwaCloseBtn {
    background: #eee;
    color: #333;
}


/* Share Button */

.share-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.share-button {
    /*background: #25D366;*/
    /*color: white;*/
    border: none;
    /*padding: 10px 18px;*/
    /*border-radius: 6px;*/
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

    .share-button:hover {
        opacity: 0.9;
    }


.service-icon {
    font-size: 24px;
    color: #333 crimson;
}

.separator {
    font-size: 5px;
    margin: 0 8px;
    vertical-align: middle;
}

.services i {
    margin-right: 4px;
}

.tolet {
    color: #2563eb; /* Blue */
}

.sale {
    color: #16a34a; /* Green */
}

.jobs {
    color: #ea580c; /* Orange */
}

.teachers {
    color: #9333ea; /* Purple */
}

.separator {
    color: #999;
    margin: 0 8px;
}

.actions i {
    margin-right: 5px;
}

.map {
    color: #2563eb;
}

.details {
    color: #7c3aed;
}

.directions {
    color: #ea580c;
}

.connect {
    color: #16a34a;
}

.separator {
    color: #999;
    margin: 0 8px;
}

