.progress-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
	max-width: 1024px;
    margin: auto;
    height: auto;
	background-color: transparent;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
	color: #333;
	font-size:14px;
}

.step i {
    background-color: #ddd;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-size: 20px;
    margin: 0 auto 10px;
}

.step.completed i {
    color: white;
}

.hidden-sm {
    display: inline-block;
	padding-bottom:10px;
}

@media (max-width: 600px) {
	
	.progress-bar {
		
		max-width: none;
		width:100%;
	}
	
	.hidden-sm {
        display: none;
    }
}

.totem-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.button {
    text-align: center;
    flex-basis: calc(33.33% - 10px); /* Distribui os botões em 33.33% do espaço disponível menos 10px de margem */
    margin-bottom: 10px; /* Adiciona espaçamento entre as linhas de botões */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.button i {
    font-size: 48px;
    color: #333;
}

.button span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

@media (max-width: 600px) {
    .button {
        flex-basis: 100%; /* Ajusta a largura do botão para 100% em telas menores */
    }
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-around; /* Centraliza os botões horizontalmente */
    align-items: center; /* Centraliza os botões verticalmente */
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.button-unidade {
    background-color: #007BFF;
    color: white;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
	width: calc(33.33% - 20px); /* Ajusta a largura para 3 por linha, com margem de 10px em cada lado */
    margin: 10px; /* Espaçamento entre os botões */
    box-sizing: border-box;
}

.button-unidade i {
    font-size: 48px;
}

.button-unidade:hover {
    filter: brightness(120%); /* Escurece a cor em 30% */
	cursor:pointer;
}

.button-unidade h2 {
    margin-top: 10px;
    font-size: 24px;
}

.button-unidade p {
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .button-unidade {
        width: 100%; /* Ajusta a largura para 100% em telas menores */
        margin-bottom: 10px;
    }
}

.comboboxes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.combo-container {
    width: 48%;
}

.combo-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.combo {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    /*appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;*/
	min-height:45px;
	background-color:#fff;
}

.select {
  appearance: none;            /* remove seta nativa */
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 46px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 40px 10px 10px; /* abre espaço p/ a seta */

  /* seta personalizada */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='black'><path d='M2 4l4 4 4-4' stroke='black' stroke-width='3' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center; /* posiciona horizontal e vertical */
  background-size: 12px;
}

.date {
  font-size: 14px;      /* fonte menor */
  padding: 4px 6px;     /* menos espaço interno */
  height: 46px;         /* força altura */
  line-height: 1.2;     /* compacta verticalmente */

  border: 1px solid #ccc;
  border-radius: 4px;
}



.buttons {
    display: flex;
    justify-content: space-between;
}

.button-back, .button-next {
    width: 20%;
    padding: 10px;
    font-size: 16px;
    background-color: #bdbdbd;
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
	 border-radius: 5px;
	 margin: auto;
}

.button-back:hover, .button-next:hover {
    filter: brightness(120%);
}

@media (max-width: 768px) {
    .comboboxes {
        flex-direction: column;
    }
    .combo-container {
        width: 100%;
        margin-bottom: 10px;
    }
    /*
	.buttons {
        flex-direction: column;
    }*/
    .button-back, .button-next {
        width: 35%;
    }
	
}

.professionals-container {
    width: 100%;
    padding: 10px;
}

/* Each professional box */
.professional-box {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
}

/* Profile section */
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-description {
    flex-grow: 1;
	text-align: left;
}

.profile-description h2 {
    margin-bottom: 5px;
    font-size: 1.5em;
}

.profile-description p {
    margin: 0;
    font-size: 1em;
    color: #555;
}

/* Schedule buttons */
.schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule button {
    flex: none;
	width: 69px;
    padding: 10px;
    font-size: 1em;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	text-align: center;
}

.schedule button:hover {
    filter: brightness(120%);
}

/* Responsive design */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        align-items: center;
    }
	
	.profile-description {
    flex-grow: 1;
	text-align: center;
}

    .profile-photo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .schedule button {
        /*flex: none;
        width: 100%;*/
    }
}

.container-form {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Responsive form styling */
.responsive-form {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Form group styling */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Full width input */
.full-width {
    flex: 0 0 100%;
}

/* Half width inputs */
.half-width {
    flex: 0 0 48%;
}

/* Label styling */
.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

/* Input, select, and date styling */
.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    /*appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;*/
	min-height:45px;
	background-color:#fff;
}

/* Form actions styling */
.form-actions {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
}

/* Button styling */
.btn-submit, .btn-reset {
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-reset {
    background-color: #6c757d;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.btn-reset:hover {
    background-color: #5a6268;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .half-width {
        flex: 0 0 100%;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-submit, .btn-reset {
        width: 100%;
    }
}

.simple-table {
    width: 80%;
    border-collapse: collapse;
	margin:auto;
	margin-bottom: 20px;
	line-height:12px;
}

.simple-table td {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
}

.simple-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.simple-table tr:hover td {
    background-color: #ddd;
}

.simple-table td strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

@media (max-width: 600px) {
	.simple-table {
		width: 95%;
	}
    .simple-table td {
        font-size: 14px;
    }
}

.success-container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-container {
    width: 120px;
    height: 120px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container i {
    font-size: 70px;
    color: #fff;
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .success-container {
        padding: 20px;
    }
    
    .icon-container {
        width: 90px;
        height: 90px;
    }
    
    .icon-container i {
        font-size: 50px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    p {
        font-size: 16px;
    }
}

.tag {
    display: inline-block;
    color: #fff;
    padding: 1px 9px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
	font-size:12px;
	margin-bottom:2px;
}

.tag a {
    color: #fff;
    text-decoration: none;
}

.tag:hover {
    filter: brightness(120%);
}