/* Browser Fallback Styles */

.browser-fallback-message {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideInDown 0.5s ease-out;
    transition: opacity 0.3s ease;
}

.fallback-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
}

.fallback-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.fallback-text h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.fallback-text p {
    margin: 0 0 15px 0;
    font-size: 14px;
    opacity: 0.9;
}

.fallback-text ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.fallback-buttons {
    display: flex;
    gap: 10px;
}

.fallback-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.fallback-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    max-width: 300px;
}

.notification-content {
    padding: 15px;
}

.notification-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.notification-content button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .browser-fallback-message {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .fallback-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fallback-buttons {
        justify-content: center;
    }
}
