/* PWA Install Button Styles */
#pwaInstallBtn {
    display: none; /* Hidden by default, shown when install is available */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(94, 114, 228, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

#pwaInstallBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 114, 228, 0.6);
}

#pwaInstallBtn:active {
    transform: translateY(0);
}

#pwaInstallBtn i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #pwaInstallBtn {
        bottom: 80px; /* Above potential nav bars */
        right: 15px;
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* iOS install instructions */
.ios-install-instructions {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.ios-install-instructions h6 {
    color: #323259;
    margin-bottom: 15px;
}

.ios-install-instructions ol {
    padding-left: 20px;
    font-size: 14px;
    color: #525f7f;
}

.ios-install-instructions ol li {
    margin-bottom: 8px;
}
