#notification-panel {
    width: 100%;
    max-height: 400px;
    display: none;
    margin-bottom: 20px;
}

#notification-panel.has-notifications {
    display: block;
}

#notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 6px;
    animation: fadeIn 0.3s ease;
    margin-right: 25px;
}

.notification-item:last-child {
    margin-bottom: 0;
}

.notif-content {
    flex: 1;
}

.notif-message {
    font-size: 14px;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.notif-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.4;
    padding: 0 0 0 10px;
}

.notif-close:hover {
    opacity: 1;
}

.notification-running {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
}

.notification-success {
    background: #ecfdf5;
    border-left: 3px solid #10b981;
}

.notification-failed {
    background: #fef2f2;
    border-left: 3px solid #ef4444;
}

.notification-idle {
    background: #f0f9ff;
    border-left: 3px solid #3b82f6;
}

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