
body {
  background: #ffffff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.card {
  border-radius: 1rem;
  transition: 0.3s;
}

.card:hover {
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card-title {
  font-weight: bold;
  font-size: 1.5rem;
}

.card-text {
  color: #555;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.fc .fc-button {
  background-color: #007bff;
  /* Cor de fundo */
  border: none;
  /* Remover borda */

  /* Cor do texto */
  padding: 5px 10px;
  /* Espaçamento interno */
  border-radius: 5px;
  /* Bordas arredondadas */
}

.fc .fc-button:hover {
  background-color: #0056b3;
  /* Cor de fundo ao passar o mouse */
}

.shepherd-modal-overlay-container {
  background-color: rgba(0, 0, 0, 0.2);
  /* Fundo escuro com 70% de opacidade */
}

.action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #696cff;
}

@media (max-width: 1030px) {
  .fc-toolbar-chunk .btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .fc-toolbar-chunk .btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
  }
}