/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* iframe#webpack-dev-server-client-overlay {
  display: none !important;
} */

/* Track */
::-webkit-scrollbar-track {
  background: #f0f1f3;
  /* border: 1px solid #DDCA92; */
  border-radius: 50px;
}

:root {
  accent-color: #0b2f36;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0b2f36;
  border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0b1f36;
}

.fc .fc-button-primary {
  font-size: 14px;
  /* background-color: #0B1F36; */
}

.fc .fc-button-active {
  font-size: 14px;
  background-color: #0b1f36;
}

.fc-toolbar-title {
  color: #0b1f36;
  font-size: 18px !important;
  text-transform: capitalize;
}

.fc-timegrid-axis-cushion.fc-scrollgrid-shrink-cushion.fc-scrollgrid-sync-inner {
  font-size: 14px;
}

.fc-scrollgrid-section.fc-scrollgrid-section-body {
  overflow: hidden;
}

.fc-event-title,
.fc-more-link {
  font-size: 12px; /* diminui o tamanho do texto do evento */
}

.fc-daygrid-event {
  font-size: 12px;
  padding: 1px 2px; /* opcional, ajusta o espaçamento */
}

@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
}

.container-loading {
    background: linear-gradient(to right, #0B2F36 0%, #000000 100%);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container-loading img {
    width: 200px;

}

@media screen and (max-width: 600px) {

    /* .container-loading img {
        width: 100%;

    } */
}
.system-updating-screen__spinner {
  width: 40px;
  height: 40px;
  margin-top: 16px;
  border: 3px solid rgba(221, 202, 146, 0.3);
  border-top-color: #ddca92;
  border-radius: 50%;
  -webkit-animation: system-updating-spin 0.8s linear infinite;
          animation: system-updating-spin 0.8s linear infinite;
}

@-webkit-keyframes system-updating-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes system-updating-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.system-updating-screen__title {
  margin: 24px 24px 12px;
  color: #ddca92;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.system-updating-screen__subtitle {
  margin: 0 24px 28px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.system-updating-screen__button {
  padding: 14px 32px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #ddca92;
  border: 2px solid #ddca92;
  border-radius: 8px;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.system-updating-screen__button:hover:not(:disabled) {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(221, 202, 146, 0.3);
}

.system-updating-screen__button:disabled {
  opacity: 0.7;
  cursor: wait;
}

