.acoes-parish-logo-frame {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0.125rem;
  border-radius: 9999px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.acoes-parish-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.acoes-header-sair {
  display: inline-flex;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #8e24aa;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header-menu-trigger {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #111111;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header-menu-trigger:active {
  background-color: rgba(0, 0, 0, 0.06);
}

.header-menu-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 50;
  display: none;
  min-width: 14rem;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  border: 1px solid #ece7ea;
}

.header-menu-panel-open {
  display: block;
}

.header-menu-item {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #f3eef1;
}

.header-menu-item:last-child {
  border-bottom: 0;
}

.header-menu-item:active,
.header-menu-item:hover {
  background-color: #f8f4f7;
  color: #7b1fa2;
}

.header-menu-item-action {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.header-menu-separator {
  height: 1px;
  margin: 0.25rem 0;
  background-color: #ece7ea;
}

.header-menu-separator.hidden,
.header-menu-item-action.hidden {
  display: none;
}

.header-menu-item-action {
  background: transparent;
}

.header-menu-logout-form {
  margin: 0;
}

.header-menu-item-logout {
  border-bottom: 0;
  color: #b3261e;
}

.header-menu-item-logout:active,
.header-menu-item-logout:hover {
  background-color: #fdecea;
  color: #b3261e;
}

.acoes-parish-logo-frame--sm {
  width: 2.5rem;
  height: 2.5rem;
}

.acoes-parish-logo-frame--md {
  width: 3.25rem;
  height: 3.25rem;
}

.header-menu-panel--right {
  left: auto;
  right: 0;
}

.header-menu-trigger-avatar {
  padding: 0;
  overflow: hidden;
}

.profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  overflow: hidden;
  background-color: #7b1fa2;
  color: #ffffff;
  font-weight: 600;
  flex-shrink: 0;
}

.profile-avatar-sm {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.75rem;
}

.profile-avatar-md {
  width: 3rem;
  height: 3rem;
  font-size: 0.875rem;
}

.profile-avatar-lg {
  width: 6rem;
  height: 6rem;
  font-size: 1.5rem;
}

.profile-avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-initials {
  line-height: 1;
  user-select: none;
}

.avatar-capture-preview-wrap {
  position: relative;
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  overflow: hidden;
  background-color: #f4f2f5;
}

.avatar-capture-video,
.avatar-capture-preview {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-capture-video {
  transform: scaleX(-1);
}

.avatar-capture-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/*
 * O acoes.css é carregado depois do tailwind.css, então estas classes têm a
 * mesma especificidade da utilitária `.hidden` do Tailwind e venceriam a
 * cascata, deixando os elementos sempre visíveis. Restauramos o comportamento
 * do `hidden` com uma especificidade maior.
 */
.avatar-capture-video.hidden,
.avatar-capture-preview.hidden,
.avatar-capture-placeholder.hidden,
.pwa-install-banner.hidden,
.pwa-install-banner.is-hidden,
.pwa-install-banner[hidden] {
  display: none !important;
}

/* Banner de instalação PWA — destaque na home pós-login */
.pwa-install-banner {
  display: block;
  margin-bottom: 1rem;
}

.pwa-install-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 1.25rem;
  color: #ffffff;
  background: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 55%, #4a148c 100%);
  box-shadow: 0 8px 22px rgba(106, 27, 154, 0.35);
}

.pwa-install-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
}

.pwa-install-banner__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pwa-install-banner__title {
  margin: 0;
  font-size: 1.1875rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pwa-install-banner__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.pwa-install-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pwa-install-banner__cta {
  display: inline-flex;
  min-height: 2.875rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #6a1b9a;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: pwa-install-cta-pulse 2.4s ease-in-out infinite;
}

.pwa-install-banner__cta:active {
  transform: scale(0.98);
  animation: none;
}

.pwa-install-banner__dismiss {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pwa-install-banner__dismiss:active {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes pwa-install-cta-pulse {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28), 0 4px 14px rgba(0, 0, 0, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pwa-install-banner__cta {
    animation: none;
  }
}
.admin-paroquia-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.admin-paroquia-header-list {
  margin-bottom: 0;
}

.admin-paroquia-nome {
  margin: 0;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
}

.admin-paroquia-local {
  margin: 0;
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #4a4a4a;
}

.admin-paroquia-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-top: 0.25rem;
  border-radius: 0.625rem;
  border: 1px solid #e5e7eb;
  background-color: #fafafa;
  overflow: hidden;
  flex-shrink: 0;
}

.admin-paroquia-header-detail .admin-paroquia-logo-frame {
  width: 3.75rem;
  height: 3.75rem;
  margin-top: 0.5rem;
}

.admin-paroquia-header-form .admin-paroquia-logo-frame {
  width: 3rem;
  height: 3rem;
}

.admin-paroquia-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.admin-reenviar-email-btn {
  box-sizing: border-box;
  display: flex;
  min-height: 3rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 9999px;
  background-color: #9333ea;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.admin-reenviar-email-btn:hover {
  background-color: #7e22ce;
}
/*
 * Badge da cor litúrgica na tela de Liturgia diária.
 * O pill é pintado com a própria cor litúrgica mencionada (verde, branco,
 * vermelho, roxo, rosa ou preto).
 */
.cor-liturgica {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  /* Fallback para cores não mapeadas: mantém o visual translúcido anterior. */
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cor-liturgica--verde {
  background-color: #2e7d32;
  color: #ffffff;
}

.cor-liturgica--branco {
  background-color: #ffffff;
  color: #3a2a10;
}

.cor-liturgica--vermelho {
  background-color: #c62828;
  color: #ffffff;
}

.cor-liturgica--roxo {
  background-color: #4a148c;
  color: #ffffff;
}

.cor-liturgica--rosa {
  background-color: #ec407a;
  color: #ffffff;
}

.cor-liturgica--preto {
  background-color: #212121;
  color: #ffffff;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Cores dos cards de montagem de escala — garante visual mesmo sem rebuild do Tailwind */
.bg-pastoral-purple {
  background-color: #9c27b0;
}

.bg-pastoral-purple-dark,
.hover\:bg-pastoral-purple-dark:hover {
  background-color: #8e24aa;
}

.bg-pastoral-lilac {
  background-color: #d7b9e8;
}

.bg-status-warning {
  background-color: #d4af37;
}

.bg-status-complete {
  background-color: #4caf50;
}

/* Ponto de status do card de semana (definido aqui para não depender de
   classes utilitárias do Tailwind que podem ser removidas no purge). */
.semana-status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 9999px;
}

/* Botão mais baixo dentro dos cards de semana para compactar a lista. */
.semana-escolha-card .menu-card-btn {
  height: 2.5rem;
}

.bg-app-bg {
  background-color: #f4f5f7;
}

.bg-escala-incompleta {
  background-color: #ef5350;
}

.text-escala-incompleta {
  color: #ef5350;
}

.btn-escala {
  display: inline-flex;
  min-height: 2.75rem;
  min-width: 5.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 0.1s ease, background-color 0.1s ease, box-shadow 0.1s ease;
}

.btn-escala:active {
  transform: scale(0.96);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.18);
}

.btn-escala-completa:active {
  background-color: #00796b;
}

.btn-escala-incompleta:active {
  background-color: #e53935;
}

.btn-escala-completa {
  background-color: #00897b;
}

.btn-escala-incompleta {
  background-color: #ef5350;
}

.checklist-agente {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  gap: 1rem;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.checklist-agente:active {
  transform: scale(0.99);
}

.checklist-agente-marcado {
  border-color: #9c27b0;
  background-color: #f3e5f5;
}

.checklist-agente-desmarcado {
  border-color: #e0e0e0;
}

.checklist-agente-box {
  display: inline-flex;
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 2px solid #9c27b0;
  background-color: #ffffff;
}

.checklist-agente-marcado .checklist-agente-box {
  background-color: #9c27b0;
  border-color: #9c27b0;
}

.checklist-agente-desmarcado .checklist-agente-box {
  border-color: #bdbdbd;
  background-color: #fafafa;
}

.checklist-agente-syncing {
  opacity: 0.85;
}

.checklist-agente-optimistic {
  transition: border-color 0.1s ease, background-color 0.1s ease;
}

.checklist-coroinha-responsavel-na-missa {
  border-color: #00897b;
  background-color: #e0f2f1;
}

.checklist-coroinha-responsavel-na-missa.checklist-agente-marcado {
  border-color: #00897b;
  background-color: #b2dfdb;
}

.checklist-coroinha-responsavel-na-missa .checklist-agente-box {
  border-color: #00897b;
}

.checklist-coroinha-responsavel-na-missa.checklist-agente-marcado .checklist-agente-box {
  background-color: #00897b;
  border-color: #00897b;
}

.coroinha-responsavel-badge {
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #00897b;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
}

.agente-indisponivel-aviso {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #c62828;
}

.escala-modo-visualizar-aviso {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 2px solid #64b5f6;
  border-radius: 20px;
  background-color: #e3f2fd;
  padding: 0.875rem 1rem;
  color: #0d47a1;
  font-size: 0.875rem;
  line-height: 1.5;
}

.escala-modo-visualizar-aviso-icone {
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .escala-modo-visualizar-aviso {
    font-size: 1rem;
  }
}

.leitores-progress {
  display: grid;
  gap: 0.75rem;
}

.leitores-progress-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  align-items: center;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.leitores-progress-completa {
  border: 2px solid #9c27b0;
  background-color: #f3e5f5;
}

.leitores-progress-pendente {
  border: 2px solid #e0e0e0;
}

.leitores-progress-dot {
  grid-row: span 2;
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #bdbdbd;
}

.leitores-progress-completa .leitores-progress-dot {
  background-color: #9c27b0;
}

.leitores-progress-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4a4a;
}

.leitores-progress-nome {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.leitores-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.leitores-tab {
  min-height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid #e0e0e0;
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #444444;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.leitores-tab-ativo {
  border-color: #9c27b0;
  background-color: #9c27b0;
  color: #ffffff;
}

.leitores-selecionado {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.leitores-busca-input {
  box-sizing: border-box;
  width: 100%;
  border-radius: 9999px;
  border: 2px solid #e0e0e0;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  color: #111111;
  background-color: #ffffff;
}

.leitores-busca-input:focus {
  outline: none;
  border-color: #9c27b0;
  box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
}

.leitores-musica-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.875rem;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.leitores-musica-btn-ativo {
  border-color: #9c27b0;
  background-color: #f3e5f5;
}

.leitores-musica-icon {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #ede7f6;
  font-size: 1.25rem;
}

.leitores-musica-check {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9c27b0;
}

.leitura-agente {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.875rem;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  background-color: #ffffff;
  padding: 0.875rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.leitura-agente-selecionado {
  border-color: #9c27b0;
  background-color: #f3e5f5;
}

.leitura-agente-radio {
  display: inline-flex;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #bdbdbd;
  background-color: #ffffff;
}

.leitura-agente-selecionado .leitura-agente-radio {
  border-color: #9c27b0;
}

.leitura-agente-radio-inner {
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 9999px;
  background-color: #9c27b0;
}

.leitura-agente-form[aria-busy="true"] .leitura-agente,
.leitores-musica-btn[disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.leitores-lista {
  max-height: 24rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.125rem;
}

/*
 * Versão compacta dos menu cards (shared/_menu_cards), espelhando a redução
 * feita na tela inicial da área comum (.acoes-home-cards), para que todos os
 * cards caibam na tela do celular sem rolagem.
 */
.menu-cards-compact section > article + article {
  margin-top: 0.75rem !important;
}

.menu-cards-compact section > article.bg-gradient-to-br {
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 12px rgba(123, 31, 162, 0.22);
}

.menu-cards-compact section > article.bg-gradient-to-br > div {
  margin-bottom: 0.75rem;
}

.menu-cards-compact section > article.bg-gradient-to-br h2 {
  font-size: 1.375rem;
  line-height: 1.25;
}

.menu-cards-compact section > article.bg-gradient-to-br p {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.menu-cards-compact section > article.bg-gradient-to-br .menu-card-btn-highlight {
  height: 2.75rem;
  font-size: 1.0625rem;
}

.menu-cards-compact section > article:not(.bg-gradient-to-br) {
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.menu-cards-compact section > article:not(.bg-gradient-to-br) > div.flex {
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.menu-cards-compact section > article:not(.bg-gradient-to-br) h2 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.menu-cards-compact section > article:not(.bg-gradient-to-br) .min-w-0 p {
  margin-top: 0.125rem;
  font-size: 0.9375rem;
  line-height: 1.35;
}

.menu-cards-compact section > article:not(.bg-gradient-to-br) .text-\[\#8E24AA\] svg {
  width: 2rem;
  height: 2rem;
}

.menu-cards-compact section > article .menu-card-btn-default {
  height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2b2b2b;
  background-color: #f4f2f5;
  border: 0;
  box-shadow: none;
}

.menu-cards-compact section > article .menu-card-btn-default:active {
  background-color: #eae5ee;
  border: 0;
  box-shadow: none;
}

/* Chips de função na montagem da escala */
.funcao-escala-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #d1c4e9;
  background-color: #ffffff;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5e35b1;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.funcao-escala-chip--selected {
  border-color: #7b1fa2;
  background-color: #7b1fa2;
  color: #ffffff;
}

.funcao-escala-chip--neutro {
  border-color: #e0e0e0;
  color: #616161;
}

.funcao-escala-chip--neutro.funcao-escala-chip--selected {
  border-color: #9e9e9e;
  background-color: #eeeeee;
  color: #424242;
}

/* Botão da engrenagem no card da missa */
.agentes-missa-trigger {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  min-height: 100%;
  background: #f3f4f6;
}

html {
  overflow-x: hidden;
}

.btn-disponibilidades {
  background-color: #00897b;
  color: #ffffff;
  text-decoration: none;
}

.btn-disponibilidades:hover {
  background-color: #00695c;
  color: #ffffff;
}

.menu-card-btn {
  display: flex;
  height: 3rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 0.1s ease, background-color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
}

.menu-card-btn:active {
  transform: scale(0.96);
}

.menu-card-btn-highlight {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-card-btn-highlight:active {
  background-color: #f3eef1;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.14);
}

.menu-card-btn-default {
  background-color: #f4f2f5;
  border: none;
  box-shadow: none;
}

.menu-card-btn-default:active {
  background-color: #eae6ec;
  box-shadow: none;
}

.menu-card-btn-sm {
  font-size: 1rem;
}

.menu-card-btn-inline {
  width: auto;
  display: inline-flex;
  padding: 0 2rem;
}

.menu-card-btn-lilac {
  background-color: #d7b9e8;
  color: #222222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.menu-card-btn-lilac:active {
  background-color: #c5a3d6;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
}

.menu-card-btn-purple {
  background-color: #9c27b0;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(123, 31, 162, 0.35);
}

.menu-card-btn-purple:active {
  background-color: #8e24aa;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

button.menu-card-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

button.menu-card-btn-default {
  border: none;
}

.menu-card-btn-spaced {
  margin-top: 0.75rem;
}

.escala-ordenacao {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 0.875rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.escala-ordenacao-titulo {
  margin: 0 0 0.625rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #616161;
}

.escala-ordenacao-opcoes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

a.escala-ordenacao-btn {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #e0e0e0;
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #444444;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 0.1s ease, border-color 0.1s ease, background-color 0.1s ease, color 0.1s ease;
}

a.escala-ordenacao-btn:active {
  transform: scale(0.97);
}

a.escala-ordenacao-btn-ativo {
  border-color: #9c27b0;
  background-color: #9c27b0;
  color: #ffffff;
}

.agente-dias-sem-servir {
  display: inline;
  font-size: 0.75rem;
  font-weight: 500;
  color: #757575;
  margin-left: 0.35rem;
}

.agente-indisponivel-aviso {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c62828;
}
