/*
Theme Name:     BuddyBoss Theme
Theme URI:      https://www.buddyboss.com/
Description:    BuddyBoss Theme makes the BuddyBoss Platform look beautiful.
Author:         BuddyBoss
Author URI:     https://www.buddyboss.com/
Version:        2.14.4
*/

/*
This stylesheet is never loaded! No need to add CSS rules here.
*/
/* PWA Install Modal Styles */
.pwa-install-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.pwa-install-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pwa-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.pwa-close-btn:hover {
    color: #000;
}

.pwa-app-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pwa-install-content h2 {
    color: #0073aa;
    margin-bottom: 15px;
    text-align: center;
}

.pwa-install-content p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.pwa-install-content ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.pwa-install-content li {
    margin-bottom: 10px;
    color: #333;
}

.pwa-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.pwa-install-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pwa-install-btn:hover {
    background: #005a87;
}

.pwa-later-btn {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.pwa-later-btn:hover {
    background: #e0e0e0;
}

.pwa-instructions {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #0073aa;
}

.pwa-instructions h3 {
    margin-top: 0;
    color: #0073aa;
}

.pwa-instructions ol,
.pwa-instructions ul {
    margin: 10px 0;
    padding-left: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Responsive styles */
@media (max-width: 600px) {
    .pwa-install-content {
        padding: 20px;
        margin: 10px;
    }
    
    .pwa-buttons {
        flex-direction: column;
    }
    
    .pwa-install-btn,
    .pwa-later-btn {
        width: 100%;
        justify-content: center;
    }
}