:root {
  --blue-shibata: #24519B;
  --red-shibata: #CA2128;
  --soft-blue-gray: #939EAA
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}


.bg-blue {
  color: #fff;
  background-color: var(--blue-shibata);
  border-color: var(--blue-shibata);
}

.bg-blue:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bg-blue-gray {
  color: #fff;
  background-color: var(--soft-blue-gray);
  border-color: var(--soft-blue-gray);
}

html,
body {
  height: 100%;
  margin: 0;
}

.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

.content-footer {
  /* padding: 1rem; */
  /* width: 100%; */
  color: white;
  text-align: center;
}

.dt-center {
  text-align: center !important;
}

.badge {
  display: inline-block;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}


.numero-dia {
  font-size: 0.8em;
  margin-top: 2px;
}

.hoje-circulo {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border: 2px solid #1976d2;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  color: #1976d2;
}

table.tableAgendamentoCD thead th {
  white-space: nowrap
}