/* Modal para permisos de notificaciones push */
.notification-permission-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.notification-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: none;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.notification-modal-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.notification-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.notification-modal-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.notification-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.notification-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.notification-modal-btn.accept {
    background-color: #007bff;
    color: white;
}

.notification-modal-btn.accept:hover {
    background-color: #0056b3;
}

.notification-modal-btn.decline {
    background-color: #6c757d;
    color: white;
}

.notification-modal-btn.decline:hover {
    background-color: #545b62;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}