.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Isso garante que o topo fique no topo e o rodapé fique embaixo */
}


.btn-custom-blue {
    background-color: #115395; /* Azul padrão bonito */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-custom-blue:hover {
    background-color: #1875d2; /* Tom mais escuro no hover */
    color: white;
}

.box_id_session_created {
    width: 50%;
    height: 30vh;
    margin: 40px auto;
    background-color: #d1e7dd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

body {
      background-color: #f8fffb;
    }

.titulo-topo {
    background-color: #008542;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.card-formulario {
    background-color: #f2f8ff;
    padding: 20px;
    border: 1px solid #ccc;
}


/* Estilo para os sliders e labels */
.slider-container {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

input[type="range"] {
    width: 100%; 
    margin-bottom: 0px; 
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(to right, rgb(67, 30, 30) 0%,  rgb(119, 55, 55) 50%, rgb(48, 125, 48) 50%, rgb(21, 85, 21) 100%);
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 0px;
}

input[type="range"]::-moz-range-track {
    height: 5px;
    border-radius: 0px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 20px;
    background: rgb(13, 65, 144);
    border-radius: 30%;
    border: #000000 solid 0px;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 20px;
    background: rgb(13, 65, 144);
    border-radius: 30%;
    border: #000000 solid 0px;
    cursor: pointer;
}

.sliderticks {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 100%;
}

.sliderticks p {
    margin: 0;
    font-size: 14px;
    color: #555;
}


.sliderticks p.zero {
    margin-left: 10px;
    margin-right: 0px;
}