/* iOS Instructions Modal */
.pwa-ios-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pwa-ios-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: right;
}

.pwa-ios-content h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.25rem;
}

.pwa-ios-content ol {
    text-align: right;
    padding-right: 20px;
    margin: 20px 0;
    line-height: 2;
}

.pwa-ios-content li {
    margin: 10px 0;
    color: #555;
}

.pwa-ios-content strong {
    color: #667eea;
}

.pwa-ios-close {
    width: 100%;
    background: #667eea;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
}

.pwa-ios-close:hover {
    background: #5568d3;
}