.notification-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.notification-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.close-notification {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-content {
    padding: 15px 20px;
}

.notification-content p {
    margin: 0 0 15px 0;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Estilos específicos para encuestas */
.notification-popup.survey .survey-options {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.survey-option-btn {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.survey-option-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Animación de entrada */
@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animación de salida */
@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .notification-popup {
        width: calc(100% - 40px);
        max-width: none;
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
}

/* Estilos para notificaciones tipo toast */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background-color: #10B981;
    color: white;
}

.notification.error {
    background-color: #EF4444;
    color: white;
}

.notification i {
    font-size: 20px;
}

.notification-content {
    flex: 1;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .notification {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }
} 