.update-log-container {
  position: relative;
  padding-left: 1.5rem;
}

.update-log {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Linha vertical da timeline */
.update-log::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #007bff, #56a8ff);
  opacity: 0.25;
  border-radius: 2rem;
}

/* Cada item */
.update-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  border: 1px solid #f0f0f0;
}

/* Efeito hover */
.update-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Bolinha */
.update-dot {
  width: 14px;
  height: 14px;
  background: #007bff;
  border-radius: 50%;
  margin-right: 0.8rem;
  position: relative;
  flex-shrink: 0;
  animation: pop 0.4s ease;
}

.update-dot::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
  transform: scale(0.6);
  transition: transform 0.25s ease;
}

.update-item:hover .update-dot::after {
  transform: scale(1);
}

/* Link */
.update-link {
  font-size: 0.97rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.update-item:hover .update-link {
  color: #007bff;
  text-decoration: none;
}

.update-item {
  flex-direction: column;
  align-items: flex-start;
}

.update-link {
  font-weight: 600;
  display: block;
}

.update-description small {
  color: #666;
  display: block;
  margin-left: 24px;
}


/* Efeito suave de entrada */
@keyframes pop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Centraliza a paginação e dá espaço acima */
.dataTables_wrapper .dataTables_paginate {
  display: flex !important;
  justify-content: center !important;
  margin-top: 1rem !important; /* espaço entre tabela e paginação */
  margin-bottom: 1rem !important; /* espaço do fim do card */
  padding-top: 0.75rem;
  border-top: 1px solid #dee2e6;
}

/* Centraliza o texto de info (caso esteja visível) */
.dataTables_wrapper .dataTables_info {
  float: none !important;
  text-align: center !important;
  margin-top: 0.75rem !important;
}
/* Sistema de Notificações Moderno */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  width: 90%;
}

.notification {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  position: relative;
}

.notification-icon {
  flex-shrink: 0;
  margin-right: 16px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.notification-body {
  flex-grow: 1;
  padding-right: 10px;
}

.notification-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}

.notification-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.notification-close {
  flex-shrink: 0;
}

.close-notification {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  font-size: 14px;
}

.close-notification:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

/* Alert Notification */
.alert-notification {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3d1 100%);
  border-left: 4px solid #ffc107;
}

.alert-notification .notification-icon {
  background: rgba(255, 193, 7, 0.15);
  color: #ff9800;
}

.alert-notification .notification-title {
  color: #e65100;
}

/* Notice Notification */
.notice-notification {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4e9ff 100%);
  border-left: 4px solid #2196f3;
}

.notice-notification .notification-icon {
  background: rgba(33, 150, 243, 0.15);
  color: #2196f3;
}

.notice-notification .notification-title {
  color: #1565c0;
}

/* Animações */
.fade-in {
  animation: fadeInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-20px) translateX(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
}

.fade-out {
  animation: fadeOutDown 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .notification-container {
    left: 5%;
    right: 5%;
    width: 90%;
    max-width: none;
  }
  
  .notification-content {
    padding: 15px;
  }
  
  .notification-icon {
    font-size: 18px;
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
  
  .notification-title {
    font-size: 14px;
  }
  
  .notification-text {
    font-size: 13px;
  }
}

/* Efeito de desaparecimento automático (opcional) */
.notification.auto-hide {
  animation: fadeInUp 0.5s forwards, fadeOutDown 0.4s 4.5s forwards;
}

/* Para múltiplas notificações */
.notification:not(:last-child) {
  margin-bottom: 10px;
}
/* CONTÊINER MAIOR E ELEGANTE */
.session-timer {
  background: #ffffff;
  padding: 8px 14px;      /* ↑ tamanho maior */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;        /* texto mais forte */
  font-size: 16px;         /* ↑ maior */
  color: #1e293b;
  border-left: 4px solid #6c757d; /* barra maior e mais sólida */
  border-right: 1px solid #e5e7eb;
}

/* Rótulo mais visível */
.session-timer .label {
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

/* Ícone maior e alinhado */
#timer-icon {
  font-size: 18px;   /* ↑ maior e visível */
  color: #484e53;
  opacity: 0.95;
}

/* ANIMAÇÃO leve */
.pulse {
  animation: pulse-icon 2s infinite ease-in-out;
}

@keyframes pulse-icon {
  from { opacity: 0.8; }
  to   { opacity: 1;   }
}

/* ALERTA */
.timer-alert {
  border-left-color: #d97706;
  color: #b45309;
}

.timer-alert .label {
  color: #b45309;
}

.timer-alert #timer-icon {
  color: #b45309;
}

/* EXPIRADO */
.session-timer.expired {
  border-left-color: #b91c1c;
  color: #991b1b;
}

.session-timer.expired .label,
.session-timer.expired #timer-icon {
  color: #991b1b;
}
/* 
  SWEET ALERT ELEGANTE PARA CONFIRMAÇÕES - TEMA CLARO
  VERSÃO CORRIGIDA
*/

/* ===== POPUP PRINCIPAL - TEMA CLARO ===== */
.swal-elegant-popup {
  border-radius: 20px !important;
  padding: 30px !important;
  border: none !important;
  background: #ffffff !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%) !important;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  animation: popupFadeIn 0.3s ease-out !important;
  position: relative !important; /* Adicionado */
  overflow: hidden !important; /* Adicionado */
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== BORDA SUPERIOR COLORIDA DINÂMICA ===== */
.swal2-warning .swal-elegant-popup::before,
.swal2-success .swal-elegant-popup::before,
.swal2-error .swal-elegant-popup::before,
.swal2-info .swal-elegant-popup::before,
.swal2-question .swal-elegant-popup::before {
  content: '';
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  height: 4px !important;
  border-radius: 20px 20px 0 0 !important;
  z-index: 1 !important;
}

/* Cores específicas para a borda superior */
.swal2-warning .swal-elegant-popup::before {
  background: linear-gradient(90deg, #fcd34d, #fbbf24) !important;
}

.swal2-success .swal-elegant-popup::before {
  background: linear-gradient(90deg, #a7f3d0, #34d399) !important;
}

.swal2-error .swal-elegant-popup::before {
  background: linear-gradient(90deg, #fca5a5, #f87171) !important;
}

.swal2-info .swal-elegant-popup::before {
  background: linear-gradient(90deg, #93c5fd, #60a5fa) !important;
}

.swal2-question .swal-elegant-popup::before {
  background: linear-gradient(90deg, #c4b5fd, #a78bfa) !important;
}

/* ===== TÍTULO - TEMA CLARO ===== */
.swal-elegant-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 15px !important;
  text-align: center !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  padding: 0 10px !important;
}

/* ===== TEXTO/CONTEÚDO - TEMA CLARO ===== */
.swal-elegant-text {
  font-size: 1.15rem !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
  text-align: center !important;
  margin-bottom: 25px !important;
  font-weight: 400 !important;
  padding: 0 10px !important;
}

/* ===== ÍCONES DINÂMICOS - TEMA CLARO ===== */
.swal2-icon {
  width: 85px !important;
  height: 85px !important;
  margin: 20px auto !important;
  border-width: 4px !important;
  position: relative !important;
  animation: iconFloat 3s ease-in-out infinite !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

/* Cores específicas para cada tipo de ícone - TEMA CLARO */
.swal2-icon.swal2-warning {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
  background: rgba(245, 158, 11, 0.05) !important;
}

.swal2-icon.swal2-success {
  border-color: #10b981 !important;
  color: #10b981 !important;
  background: rgba(16, 185, 129, 0.05) !important;
}

.swal2-icon.swal2-error {
  border-color: #ef4444 !important;
  color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

.swal2-icon.swal2-info {
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
  background: rgba(59, 130, 246, 0.05) !important;
}

.swal2-icon.swal2-question {
  border-color: #8b5cf6 !important;
  color: #8b5cf6 !important;
  background: rgba(139, 92, 246, 0.05) !important;
}

/* Conteúdo do ícone */
.swal2-icon .swal2-icon-content {
  font-size: 3.8rem !important;
  font-weight: 400 !important;
}

/* ===== BOTÕES - TEMA CLARO ===== */
.swal2-actions {
  gap: 15px !important;
  margin-top: 30px !important;
}

/* Botão CONFIRMAR - TEMA CLARO */
.swal2-confirm.swal-elegant-confirm {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 36px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: 
    0 4px 15px rgba(59, 130, 246, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05) !important;
  min-width: 130px !important;
  position: relative !important;
  overflow: hidden !important;
}

.swal2-confirm.swal-elegant-confirm::before {
  content: '';
  position: absolute !important;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.swal2-confirm.swal-elegant-confirm:hover {
  transform: translateY(-3px) !important;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.swal2-confirm.swal-elegant-confirm:hover::before {
  left: 100%;
}

.swal2-confirm.swal-elegant-confirm:active {
  transform: translateY(-1px) !important;
  box-shadow: 
    0 4px 15px rgba(59, 130, 246, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* Botão CANCELAR - TEMA CLARO */
.swal2-cancel.swal-elegant-cancel {
  background: white !important;
  color: #6b7280 !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 14px 36px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  min-width: 130px !important;
}

.swal2-cancel.swal-elegant-cancel:hover {
  background: #f9fafb !important;
  border-color: #d1d5db !important;
  color: #4b5563 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.swal2-cancel.swal-elegant-cancel:active {
  transform: translateY(-1px) !important;
}

/* ===== FOOTER - TEMA CLARO ===== */
.swal2-footer {
  border-top: 1px solid #f3f4f6 !important;
  margin-top: 25px !important;
  padding-top: 20px !important;
  color: #9ca3af !important;
  font-size: 0.9rem !important;
  text-align: center !important;
}

/* ===== ANIMAÇÕES DE ENTRADA/SAÍDA ===== */
.swal2-show {
  animation: none !important;
}

.swal2-hide {
  animation: none !important;
}

/* ===== ESTILO PARA CONTEÚDO HTML ===== */
.swal-elegant-text ul,
.swal-elegant-text ol {
  text-align: left !important;
  padding-left: 20px !important;
  margin: 15px 0 !important;
}

.swal-elegant-text li {
  margin-bottom: 8px !important;
  padding-left: 5px !important;
}

.swal-elegant-text strong {
  color: #1f2937 !important;
  font-weight: 600 !important;
}

/* ===== BOTÃO FECHAR (X) - TEMA CLARO ===== */
.swal2-close {
  width: 40px !important;
  height: 40px !important;
  font-size: 1.8rem !important;
  color: #9ca3af !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
}

.swal2-close:hover {
  color: #6b7280 !important;
  transform: scale(1.1) !important;
}

/* ===== LOADING STATE ===== */
.swal2-confirm.swal-elegant-confirm.loading {
  position: relative;
  color: transparent !important;
}

.swal2-confirm.swal-elegant-confirm.loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: buttonSpin 0.8s linear infinite;
}

@keyframes buttonSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== FOCO NOS BOTÕES - TEMA CLARO ===== */
.swal2-confirm.swal-elegant-confirm:focus,
.swal2-cancel.swal-elegant-cancel:focus {
  outline: none !important;
}

.swal2-confirm.swal-elegant-confirm:focus {
  box-shadow: 
    0 0 0 3px rgba(59, 130, 246, 0.15),
    0 4px 15px rgba(59, 130, 246, 0.2) !important;
}

.swal2-cancel.swal-elegant-cancel:focus {
  box-shadow: 
    0 0 0 3px rgba(209, 213, 219, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 640px) {
  .swal-elegant-popup {
    padding: 24px !important;
    margin: 0 20px !important;
    width: auto !important;
  }
  
  .swal-elegant-title {
    font-size: 1.5rem !important;
  }
  
  .swal-elegant-text {
    font-size: 1rem !important;
  }
  
  .swal2-icon {
    width: 70px !important;
    height: 70px !important;
    margin: 15px auto !important;
  }
  
  .swal2-icon .swal2-icon-content {
    font-size: 3rem !important;
  }
  
  .swal2-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .swal2-confirm.swal-elegant-confirm,
  .swal2-cancel.swal-elegant-cancel {
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 20px !important;
  }
}

/* ===== ANIMAÇÃO DE SAÍDA ===== */
@keyframes popupFadeOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
}
#predio-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  transition: 
    max-height 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

#predio-wrapper.open {
  max-height: 500px; /* ajuste conforme tamanho do conteúdo */
  opacity: 1;
  transform: scaleY(1);
}

.image-card-link {
  text-decoration: none;
  display: block;
}

.image-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  transition: transform 0.3s ease;
}

.floating-image {
  border-radius: 1.2rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
}

/* --- Efeito de levantar --- */
.image-card-link:hover .image-card-wrapper {
  transform: translateY(-10px);
}

.image-card-link:hover .floating-image {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Responsividade */
@media (max-width: 768px) {
  .image-card-link:hover .image-card-wrapper {
    transform: translateY(-5px);
  }
}
/*
 * 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.
 *




 */
