/* Perguntas */
.content-personalizado {
  display:block!important;
}

.form-perguntas .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 8px 0 0 8px;
}

.form-perguntas .card {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.form-perguntas p {
  font-size: 13px;
  font-weight: 700;
}

.form-perguntas textarea {
  height: 9rem;
}

#btn-enviar {
  width: 250px;
}

/* Agendamento */
.calendar {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.week {
  display: flex;
  justify-content: space-between;
  background-color: #f2f2f2;
  padding: 15px;
}



.date {
  display: block;
  font-size: 1.5em;
  margin-top: 5px;
  font-weight: 500;
  color: #007bff;
}

.timeslots {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.timeslot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ddd;
}

.timeslot:first-child {
  border-left: none;
}

.time {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 7px 15px;
  margin: 5px 0;

  text-align: center;
  cursor: pointer;
  color: #007bff;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.time:hover {
  background-color: #e0e0e0;
}

.icon .mdi {
  font-size: 2rem;
}

@media (max-width: 500px) {
  .desktop-tablet {
      display: none;
  }

  .mobile {
      display: block!important;
  }
}

.titulo-mes {
  text-align: center;
  padding: 0.4rem;
  background-color: #f2f2f2;
  border-bottom: 1px solid #dfd7d7;
}

.titulo-mes h5 {
  color: #868282;
  font-weight: 500;
}

.agendamento-confirmado {
  background-color: #e0e0e0!important;
}

.disponibilidade{
  width: 100%;
  max-height: 250px;
  overflow: auto;
}

::-webkit-scrollbar-track {
  border-radius: 10px;

}

::-webkit-scrollbar {
  width: 8px;

}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #999999;
}
