/* ============================================
   CRONOS TASK NOTIFICATION STYLES
   ============================================ */

.cronos-task-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00d4ff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3),
                0 0 0 1px rgba(0, 212, 255, 0.2);
    z-index: 10000;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    min-width: 320px;
}

.cronos-task-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cronos-notification-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cronos-icon {
    font-size: 40px;
    animation: robotBounce 1s ease infinite;
}

@keyframes robotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cronos-notification-content div {
    flex: 1;
}

.cronos-notification-content strong {
    color: #00d4ff;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.cronos-notification-content p {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.cronos-confetti {
    font-size: 32px;
    animation: confettiShake 0.5s ease infinite;
}

@keyframes confettiShake {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Efecto de brillo para la notificación */
.cronos-task-notification::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff, #0099cc);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 2s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .cronos-task-notification {
        left: 16px;
        right: 16px;
        max-width: none;
        min-width: auto;
    }
}
