
.container {
  display: flex;
  padding: 3%;
  margin: 3%;
  background-color: #f7f7f7;
  flex-direction: column;
}

.central{
  display: flex;
  flex-direction: row;
  padding: 10px;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
}

.labelform {
    font-size: small;
    font-style: italic;
    color: #333399;
}

.divisor {
  background: #f2dcdb; 
  text-align-last: center; 
  font-weight: bold;
}

#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  text-align: center;  
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #c2c2c2;
  color: #575a5c;
}

.radios-inline {
    display: flex;
    gap: 15px; /* Espaço entre os radios */
    align-items: center;
}

/* Alinhamento responsivo */
@media (max-width: 768px) {
    .radios-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}

.btn_propostas {
  display: inline-block;
  border-radius: 4px;
  background-color: #4187b8;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.btn_propostas span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn_propostas span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btn_propostas:hover span {
  padding-right: 25px;
}

.btn_propostas:hover span:after {
  opacity: 1;
  right: 0;
}