/* PWA Installation Styles */
.sevayat-standalone {
    padding-top: env(safe-area-inset-top);
}

/* Install button states */
.sevayat-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* iOS specific styles */
@supports (-webkit-touch-callout: none) {
    .sevayat-modal-content {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
}

/* Android Chrome install prompt */
#sevayat-install-prompt .browser-instructions {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f5b800;
}

#sevayat-install-prompt .browser-instructions h4 {
    margin-top: 0;
    color: #333;
}

#sevayat-install-prompt .browser-instructions ol {
    margin: 10px 0;
    padding-left: 20px;
}

#sevayat-install-prompt .browser-instructions li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Installation success animation */
@keyframes celebrate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sevayat-install-success {
    animation: celebrate 0.5s ease-in-out 3;
}

/* Browser-specific install hints */
.install-hint-chrome::after {
    content: "Look for the install icon (⊕) in the address bar";
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.install-hint-safari::after {
    content: "Tap the share icon and select 'Add to Home Screen'";
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.install-hint-firefox::after {
    content: "Look for the install option in the menu";
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}