/* Modal pequeno para notificações */
.notification-modal {
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    min-width: 150px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: none;
}

.notification-modal.show {
    display: block;
    animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-modal-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #ffffff;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.notification-modal-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
}

.notification-modal-option i {
    width: 16px;
    text-align: center;
}

.notification-modal-option.delete:hover {
    background: rgba(255, 59, 59, 0.2);
    color: #ff3b3b;
}

/* Estilo para notificação focada */
.notification-item.focused {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

