/* Pipeline CSS - Estilos para a página de monitoramento */

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pipeline-stage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 10px;
}

.pipeline-arrow {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background-color: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.status-dot.offline {
    background-color: #ef4444;
}

.status-dot.partial {
    background-color: #f59e0b;
}
