html, body {
    height: 100%;
}

body {
    margin: 0 0 0 0;
    /*padding: 0px 5px 0px 5px;*/
    font-family: Arial,Helvetica,sans-serif;
    background: #EAF7FF;
    background-image: url("fs/images/novo_fundo.png");
    background-repeat:no-repeat;
    background-position: center center;
}

.selectItemTextDisabled,
.textItemDisabled{	
	color:#000000;
}

.hintTextBox{
	white-space:nowrap;
	padding-left: 2px;
}

.chartdiv {
    margin-top: 21px;
    margin-bottom: 20px;        
}

/* Contêiner da barra de progresso */
.progress-bar {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Distribui os itens uniformemente */
    position: relative;
    width: 80%;
    margin: 5px auto;
}

/* Linha principal */
.progress-bar::before {
	margin-top: 20px;
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #d3d3d3;
    z-index: 1;
    transform: translateY(-50%);
}

/* Linha preenchida dinamicamente */
.progress-bar .progress-filled {
	margin-top: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background-color: #007BFF;
    z-index: 2;
    width: 0%; /* Largura inicial (dinâmica) */
    transform: translateY(-50%);
    transition: width 0.4s ease;
}

/* Cada etapa */
.step {
    display: flex;
    align-items: center; /* Centraliza horizontalmente */
    flex-direction: column; /* Empilha o círculo e o texto */
    margin-bottom: 10px; /* Espaço entre as etapas */
    flex: 1; /* Distribui espaço uniformemente */
    text-align: center; /* Alinha o texto */
    /*margin-left: 10px;*/
}

/* Círculo dos passos */
.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; /* Espaço entre o círculo e o texto */
    position: relative;
    z-index: 2;
}

/* Círculo padrão (não completado) */
.circle.default {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #FFC107;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; /* Espaço entre o círculo e o texto */
    position: relative; /* Para evitar sobreposição */
    z-index: 2; /* Certifica-se que o círculo está acima da linha */
}

/* Círculo com imagem de "warning" quando não completado */
.circle.default::after {
    content: '❗';
    font-size: 13px;
    color: black;
    
}

.circle.completed {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.circle.completed::after {
    content: '✔';
    font-size: 16px;
    color: white;
}

/* Label abaixo dos passos */
.step-label {
    font-size: 12px; /* Ajusta tamanho da fonte */
    color: #000;    
    text-align: left;
    margin: 0; /* Remove margens automáticas */
    line-height: 1; /* Alinha o texto de forma consistente */
    white-space: nowrap; /* Impede quebra de linha, caso o texto seja muito longo */
    flex: 1; /* Preenche o espaço restante */
}

.completed-label {
    color: #28a745;
}