/* 
* SISTEMA CARRO-PIPA - CSS Customizado
* Tema profissional para melhorar a aparência do sistema
*/

:root {
  /* Paleta de cores moderna e vibrante */
  --primary-color: #4361ee;
  --primary-dark: #3a0ca3;
  --primary-light: #e9efff;
  --secondary-color: #4f5d75;
  --success-color: #06d6a0;
  --danger-color: #ef476f;
  --warning-color: #ffd166;
  --info-color: #118ab2;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-muted: #6c757d;

  /* Background colors */
  --body-bg: #f0f2f5;
  --sidebar-bg: #2b2d42;
  --sidebar-text: #f8f9fa;
  --sidebar-active: #4361ee;
  --sidebar-active-bg: rgba(255, 255, 255, 0.15);
  --sidebar-hover: rgba(255, 255, 255, 0.08);
  --sidebar-header-bg: #1f2133;
  --sidebar-submenu-bg: #32344a;

  /* Cards and elements */
  --card-border: #e0e4e8;
  --card-shadow: rgba(17, 12, 46, 0.1);
  --card-header-bg: #f8f9fa;
  --card-hover-shadow: rgba(17, 12, 46, 0.15);
  
  /* Typography */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Dimensions */
  --sidebar-width: 260px;
  --sidebar-collapsed-width: 70px;
  --header-height: 60px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* Estilos globais */
body {
  background-color: var(--body-bg);
  font-family: var(--font-main);
  color: #333;
}

/* Wrapper e layout base */
#wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar modernizada e elegante - Design 2025 */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(145deg, var(--sidebar-bg), var(--sidebar-header-bg));
  color: var(--sidebar-text);
  z-index: 1000;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.sidebar-header {
  background: linear-gradient(to right, var(--sidebar-header-bg), var(--sidebar-bg));
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}

.sidebar-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.sidebar-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.sidebar-header h3 i {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-right: 0.75rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-brand-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* Links da sidebar com efeitos modernos e sofisticados */
.sidebar .components {
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  margin: 0.4rem 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-left: none;
  transition: all 0.3s;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.sidebar .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sidebar .nav-link:hover {
  color: white;
  background-color: var(--sidebar-hover);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  transform: translateY(-1px);
}

.sidebar .nav-link:hover::before {
  transform: scaleY(0.6);
}

.sidebar .nav-link.active {
  color: white;
  background: linear-gradient(to right, rgba(67, 97, 238, 0.15), transparent);
  font-weight: 600;
  border-radius: 18px;
}

.sidebar .nav-link.active::before {
  transform: scaleY(1);
}

.sidebar .nav-link i {
  width: 26px;
  height: 26px;
  font-size: 1.1rem;
  margin-right: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px;
}

.sidebar .nav-link:hover i {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.sidebar .nav-link.active i {
  color: white;
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(67, 97, 238, 0.3);
}

.sidebar .nav-link.dropdown-toggle::after {
  margin-left: auto;
  transition: transform 0.3s;
}

.sidebar .nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Submenus modernos da sidebar */
.sidebar .list-unstyled.collapse {
  background-color: rgba(0, 0, 0, 0.15);
  margin: 0.3rem 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0.3rem;
}

.sidebar .list-unstyled .dropdown-item {
  padding: 0.65rem 1rem 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: all 0.3s;
  border-radius: 8px;
  position: relative;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

.sidebar .list-unstyled .dropdown-item::before {
  content: '•';
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
  font-size: 1rem;
}

.sidebar .list-unstyled .dropdown-item:hover,
.sidebar .list-unstyled .dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar .list-unstyled .dropdown-item:hover::before,
.sidebar .list-unstyled .dropdown-item.active::before {
  color: var(--primary-color);
}

/* Sidebar user section moderna */
.sidebar-user {
  padding: 1rem 1.5rem;
  margin-top: auto;
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.sidebar-user::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.sidebar-user .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 0.7rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.sidebar-user .dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.sidebar-user .dropdown-toggle i {
  font-size: 1.2rem;
  margin-right: 0.7rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(67, 97, 238, 0.15);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.sidebar-user .dropdown-toggle::after {
  margin-left: auto;
}

.sidebar-user .dropdown-menu {
  min-width: 100%;
  background: linear-gradient(145deg, var(--sidebar-submenu-bg), rgba(42, 46, 65, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.7rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 0.5rem;
}

.sidebar-user .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 1rem;
  transition: all 0.3s;
}

.sidebar-user .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-user .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Conteúdo principal */
.main-content {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  background-color: var(--body-bg);
  transition: all 0.3s;
}

/* Ajuste para sidebar recolhida */
body.sidebar-collapsed .sidebar {
  width: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .sidebar-header h3 span,
body.sidebar-collapsed .sidebar-brand-tagline,
body.sidebar-collapsed .sidebar .nav-link span,
body.sidebar-collapsed .sidebar .dropdown-toggle::after {
  display: none;
}

body.sidebar-collapsed .sidebar .nav-link {
  justify-content: center;
  padding: 1rem 0;
}

body.sidebar-collapsed .sidebar .nav-link i {
  margin-right: 0;
  font-size: 1.25rem;
}

body.sidebar-collapsed .sidebar-user {
  display: none;
}

body.sidebar-collapsed .main-content {
  margin-left: var(--sidebar-collapsed-width);
  width: calc(100% - var(--sidebar-collapsed-width));
}

/* Header da área de conteúdo */
.navbar {
  height: var(--header-height);
  background-color: white !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--card-border);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar .container-fluid {
  padding: 0;
}

#sidebarCollapse {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  transition: all 0.2s;
  box-shadow: none;
}

#sidebarCollapse:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.date-time-display {
  color: var(--secondary-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--light-color);
  border-radius: var(--radius-md);
}

.date-time-display i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.user-info {
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  color: var(--primary-color);
}

/* Conteúdo das páginas */
.container-fluid.py-4 {
  padding: 1.5rem !important;
}

/* Cabeçalhos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--dark-color);
}

h1 {
  font-size: 1.8rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
}

h2 i, h3 i {
  color: var(--primary-color);
}

/* Cards premium com efeitos modernos */
.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 0.25rem 0.75rem var(--card-shadow);
  margin-bottom: 1.5rem;
  background-color: white;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card:hover {
  box-shadow: 0 1rem 2rem var(--card-hover-shadow);
  transform: translateY(-5px);
}

.card-header {
  background-color: white;
  border-bottom: 1px solid var(--card-border);
  padding: 1.25rem 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.card-header::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
}

.card-header h5, .card-header h4, .card-header h3 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  align-items: center;
}

.card-header i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.2em;
}

.card-body {
  padding: 1.75rem;
}

/* Cards especiais */
.dashboard-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.dashboard-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* Adiciona animação do gradiente ao passar o mouse */
.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: 300% 300%;
  animation: none;
}

.dashboard-card:hover::before {
  opacity: 1;
  animation: animateGradient 3s ease infinite;
}

@keyframes animateGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.dashboard-card .card-body {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.dashboard-card .card-content {
  flex: 1;
}

.dashboard-card .card-title {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.dashboard-card .card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.dashboard-card .card-trend {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.dashboard-card .card-trend.up {
  color: var(--success-color);
}

.dashboard-card .card-trend.down {
  color: var(--danger-color);
}

/* Status cards modernizados (caixas de status) */
.status-card {
  border: none;
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  position: relative;
}

.status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.status-card:hover::before {
  opacity: 0.7;
  animation: shimmerEffect 2s infinite;
}

.status-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.status-card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-card p {
  font-weight: 600;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-card.bg-warning {
  background: linear-gradient(145deg, #ffd166, #ffbe0b);
  border-bottom: 4px solid #fb8500;
}

.status-card.bg-warning::before {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.15), rgba(255, 193, 7, 0.4), rgba(255, 226, 14, 0.2), rgba(255, 255, 255, 0.3));
  background-size: 300% 300%;
}

.status-card.bg-primary {
  background: linear-gradient(145deg, #64b5f6, #2196f3);
  border-bottom: 4px solid #1976d2;
}

.status-card.bg-primary::before {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.15), rgba(100, 181, 246, 0.4), rgba(33, 150, 243, 0.2), rgba(255, 255, 255, 0.2));
  background-size: 300% 300%;
}

.status-card.bg-success {
  background: linear-gradient(145deg, #06d6a0, #079676);
  border-bottom: 4px solid #057a5f;
}

.status-card.bg-danger {
  background: linear-gradient(145deg, #ef476f, #d90429);
  border-bottom: 4px solid #c20424;
}

@keyframes shimmerEffect {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Cards de solicitação com design moderno 2025 */
.card-solicitacao {
  border: none;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.card-solicitacao:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.05);
}

.card-solicitacao .status-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--status-color, #ccc);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 15px rgba(var(--status-rgb, 204, 204, 204), 0.5);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  from { opacity: 0.85; }
  to { opacity: 1; box-shadow: 0 0 20px rgba(var(--status-rgb, 204, 204, 204), 0.7); }
}

.card-solicitacao.pendente {
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.card-solicitacao.pendente .status-indicator {
  background: linear-gradient(to bottom, #ffbe0b, #fb8500);
  --status-rgb: 255, 193, 7;
}

.card-solicitacao.pendente:hover {
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.15), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.card-solicitacao.andamento {
  background: linear-gradient(145deg, rgba(33, 150, 243, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.card-solicitacao.andamento .status-indicator {
  background: linear-gradient(to bottom, #64b5f6, #2196f3);
  --status-rgb: 33, 150, 243;
}

.card-solicitacao.andamento:hover {
  background: linear-gradient(145deg, rgba(33, 150, 243, 0.15), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.card-solicitacao.atendida {
  background: linear-gradient(145deg, rgba(6, 214, 160, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(6, 214, 160, 0.2);
}

.card-solicitacao.atendida .status-indicator {
  background: linear-gradient(to bottom, #06d6a0, #079676);
  --status-rgb: 6, 214, 160;
}

.card-solicitacao.cancelada {
  background: linear-gradient(145deg, rgba(239, 71, 111, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(239, 71, 111, 0.2);
}

.card-solicitacao.cancelada .status-indicator {
  background: linear-gradient(to bottom, #ef476f, #d90429);
  --status-rgb: 239, 71, 111;
}

/* Botões elegantes e premium */
.btn {
  border-radius: var(--radius-md);
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
  pointer-events: none;
}

.btn:active::after {
  width: 300%;
  height: 300%;
}

.btn * {
  position: relative;
  z-index: 2;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

.btn-success:hover, .btn-success:focus {
  background-color: #06864a;
  border-color: #06864a;
  box-shadow: 0 4px 10px rgba(15, 157, 88, 0.3);
  transform: translateY(-2px);
}

.btn-danger {
  background-color: var(--danger-color);
  border-color: var(--danger-color);
  color: white;
}

.btn-danger:hover, .btn-danger:focus {
  background-color: #c51f1f;
  border-color: #c51f1f;
  box-shadow: 0 4px 10px rgba(217, 48, 37, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #484c52;
  border-color: #484c52;
  box-shadow: 0 4px 10px rgba(95, 99, 104, 0.3);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
  transform: translateY(-2px);
}

.btn i {
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
}

/* Tabelas Premium */
table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: white;
  box-shadow: 0 0.125rem 0.5rem var(--card-shadow);
}

table thead {
  position: relative;
}

table thead::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

table thead th {
  color: var(--dark-color);
  background-color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: none;
  position: relative;
  vertical-align: middle;
}

table thead th:first-child {
  border-top-left-radius: var(--radius-lg);
}

table thead th:last-child {
  border-top-right-radius: var(--radius-lg);
}

table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--card-border);
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody tr:hover {
  background-color: rgba(26, 115, 232, 0.03);
  transform: translateY(-1px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.02);
}

table td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  color: #333;
  font-size: 0.95rem;
  border: none;
}

/* Status badges em tabelas */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Tabelas responsivas */
.table-responsive {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Paginação de tabelas */
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.4rem 0.8rem;
  margin-left: 3px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  background-color: white;
  color: var(--secondary-color);
  transition: all 0.3s;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: var(--primary-color);
  color: white !important;
  border-color: var(--primary-color);
  box-shadow: 0 2px 5px rgba(26, 115, 232, 0.3);
}

/* Status badges modernos */
.status-badge,
.badge.rounded-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65em 1em;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  gap: 6px;
}

/* Efeito de brilho ao passar o mouse */
.badge.rounded-pill::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  transform: scale(0);
  transition: transform 0.6s;
  z-index: -1;
  opacity: 0;
}

.badge.rounded-pill:hover::before {
  transform: scale(1);
  opacity: 1;
}

/* Elevação ao hover */
.badge.rounded-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

/* Estilização dos ícones */
.badge.rounded-pill i {
  font-size: 0.9em;
  margin-right: 2px;
  transition: transform 0.4s ease;
}

.badge.rounded-pill:hover i {
  transform: rotate(15deg) scale(1.2);
}

/* Badge Em Andamento (ícone engrenagem) */
.badge.rounded-pill i.fa-cogs {
  animation: spin 8s linear infinite;
  transform-origin: center;
  font-size: 1.1em;
  color: #fff;
  margin-right: 5px;
}

/* Modificar o ícone fa-cogs para mostrar uma única engrenagem */
.badge.rounded-pill i.fa-cogs::before {
  content: "\f013"; /* Código do FontAwesome para uma única engrenagem (fa-cog) */
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Badge Pendente (ícone ampulheta) */
.badge.rounded-pill i.fa-hourglass-half {
  animation: flip 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes flip {
  0%, 100% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
}

/* Estilos específicos por status */
.card-solicitacao.pendente .badge.rounded-pill {
  background: linear-gradient(135deg, #ffbe0b, #fb8500);
  border: 1px solid rgba(255,255,255,0.2);
  color: #000;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  font-weight: 700;
}

.card-solicitacao.andamento .badge.rounded-pill {
  background: linear-gradient(135deg, #64b5f6, #2196f3);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* Formulários elegantes e profissionais */
.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.form-label .text-danger {
  margin-left: 0.25rem;
}

.form-control {
  border-radius: var(--radius-md);
  padding: 0.675rem 0.95rem;
  font-size: 0.95rem;
  border: 1px solid var(--card-border);
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.form-control::placeholder {
  color: #adb5bd;
  font-size: 0.9rem;
}

.form-control-lg {
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 1.05rem;
}

.form-select {
  border-radius: var(--radius-md);
  padding: 0.675rem 2.5rem 0.675rem 0.95rem;
  font-size: 0.95rem;
  border: 1px solid var(--card-border);
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease-in-out;
  background-size: 12px 10px;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.form-select option {
  padding: 0.75rem;
  font-size: 0.95rem;
}

.input-group {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
}

.input-group-text {
  background-color: white;
  border: 1px solid var(--card-border);
  color: var(--secondary-color);
  padding: 0.675rem 1rem;
  font-size: 0.95rem;
}

.input-group .form-control:not(:first-child) {
  border-left: 0;
}

.input-group .form-control:not(:last-child) {
  border-right: 0;
}

.input-group .btn {
  z-index: 3;
}

/* Form groups com espaçamento correto */
.mb-3, .mb-4 {
  margin-bottom: 1.5rem !important;
}

/* Form feedback e validação */
.form-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.valid-feedback,
.invalid-feedback {
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: block;
}

.was-validated .form-control:valid, 
.form-control.is-valid {
  border-color: var(--success-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid, 
.form-control.is-invalid {
  border-color: var(--danger-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Estilo do checkbox */
.form-check-input {
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.25em;
  margin-right: 0.5rem;
  background-color: white;
  border: 1px solid #adb5bd;
  transition: all 0.2s;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 1px 3px rgba(26, 115, 232, 0.3);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

/* Alertas estilizados */
.alert {
  border-radius: 0.3rem;
  border: none;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-left: 4px solid #17a2b8;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-left: 4px solid #dc3545;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-left: 4px solid #28a745;
}

/* Text utilities */
.text-muted {
  color: var(--text-muted) !important;
}

/* Breadcrumb customizado */
.breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}

.breadcrumb-item.active {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Dashboard cards coloridos com design moderno e atraente */
.dashboard-card {
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.dashboard-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Variantes coloridas dos cards com gradientes modernos */
.dashboard-card-primary {
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
}

.dashboard-card-primary::before {
  background: linear-gradient(135deg, #4361ee, #3a0ca3, #6930c3, #5390d9, #4361ee);
  background-size: 300% 300%;
}

.dashboard-card-info {
  background: linear-gradient(135deg, #4cc9f0, #118ab2);
}

.dashboard-card-info::before {
  background: linear-gradient(135deg, #4cc9f0, #118ab2, #0096c7, #48cae4, #4cc9f0);
  background-size: 300% 300%;
}

.dashboard-card-success {
  background: linear-gradient(135deg, #06d6a0, #079676);
}

.dashboard-card-success::before {
  background: linear-gradient(135deg, #06d6a0, #079676, #2a9d8f, #52b788, #06d6a0);
  background-size: 300% 300%;
}

.dashboard-card-warning {
  background: linear-gradient(135deg, #ffbe0b, #fb8500);
}

.dashboard-card-warning::before {
  background: linear-gradient(135deg, #ffbe0b, #fb8500, #e85d04, #ff9e00, #ffbe0b);
  background-size: 300% 300%;
}

/* Ícone do dashboard */
.dashboard-icon {
  width: 54px;
  height: 54px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-icon i {
  font-size: 2rem;
}

/* Card do dashboard */
.dashboard-card {
  height: 100px;
  overflow: hidden;
}

.dashboard-card .card-body {
  padding: 0.8rem 1.2rem;
  height: 100%;
}

.dashboard-content {
  flex-grow: 1;
  overflow: hidden;
}

/* Números do dashboard */
.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  margin-right: 0.8rem;
  letter-spacing: 3px;
  min-width: 40px;
  text-align: right;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.dashboard-card-warning .stat-number {
  color: #000;
  text-shadow: none;
}

/* Labels do dashboard */
.dashboard-labels {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  line-height: 1.1;
  margin-left: 0.5rem;
}

.label-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px; /* Espaçamento entre letras */
  color: #ffffff;
  margin-bottom: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.label-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1.5px; /* Espaçamento entre letras */
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.dashboard-card-warning .label-title,
.dashboard-card-warning .label-subtitle {
  color: #000;
}

.dashboard-card-warning .label-subtitle {
  color: rgba(0, 0, 0, 0.8);
}

/* Responsividade */
@media (max-width: 1399.98px) {
  .stat-number {
    font-size: 4rem;
  }
  
  .label-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 1199.98px) {
  .stat-number {
    font-size: 3.5rem;
  }
  
  .dashboard-icon {
    width: 70px;
    height: 70px;
  }
  
  .label-title {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }
  
  .label-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 991.98px) {
  .stat-number {
    font-size: 3rem;
    letter-spacing: 3px;
  }
  
  .label-title {
    font-size: 1rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 767.98px) {
  .dashboard-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-number {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .label-title {
    letter-spacing: 2px;
  }
  
  .label-subtitle {
    letter-spacing: 2px;
  }
}

/* Page headers */
.page-header {
  margin-bottom: 1.5rem;
}

.page-header .page-title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--dark-color);
}

/* Estilos para a página de famílias */
.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  letter-spacing: 0.3px;
}

/* Botão de ação principal */
.action-button {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Card de busca */
.search-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: none;
}

.search-card .card-header {
  padding: 1rem 1.5rem;
}

.search-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.search-label {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #495057;
}

.search-input {
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
}

.search-button {
  padding: 0.8rem 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Tabela customizada */
.table-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: none;
}

.table-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #495057;
}

.custom-table {
  margin-bottom: 0;
}

.table-header th {
  background-color: #f8f9fa;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #495057;
  border-top: none;
}

.custom-table td {
  font-size: 1.05rem;
  vertical-align: middle;
}

/* Botões de ação da tabela */
.action-buttons-group {
  display: flex;
  gap: 0;
  align-items: center;
}

.action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0;
  border-radius: 0;
  transition: all 0.2s;
  border: none;
}

.action-btn:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.action-btn:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.action-btn:hover {
  transform: translateY(-2px);
  z-index: 2;
}

/* Modal customizado */
.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-title {
  font-weight: 600;
}

.modal-footer {
  background-color: #f8f9fa;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

/* Login page */
.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
}

.login-card {
  width: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.login-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.login-body {
  padding: 2rem;
  background-color: white;
}

.login-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Título do Dashboard moderno e profissional */
.dashboard-title-wrapper {
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--primary-color);
}

.dashboard-title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-.895 3-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm63 31c1.657 0 3-.895 3-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM34 90c1.657 0 3-.895 3-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.657 0 3-.895 3-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234361ee' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.dashboard-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  position: relative;
}

.dashboard-title i {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.7rem;
  margin-right: 1rem;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(67, 97, 238, 0.1);
}

.dashboard-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-left: 3.7rem;
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
}

@media (max-width: 768px) {
  .dashboard-title-wrapper {
    padding: 1rem 1.5rem;
  }
  
  .dashboard-title {
    font-size: 1.8rem;
  }
  
  .dashboard-subtitle {
    margin-left: 3.2rem;
    font-size: 0.95rem;
  }
}

/* Responsividade aprimorada para cards estatísticos */
.dashboard-icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dashboard-content {
  min-width: 0; /* Previne overflow */
  flex: 1;
}

.dashboard-labels {
  min-width: 0; /* Previne overflow */
}

.label-title, .label-subtitle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-number {
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Media queries para responsividade */
@media (max-width: 1200px) {
  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .dashboard-card .card-body {
    padding: 1.2rem 1rem;
  }
  
  .dashboard-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .dashboard-labels .label-title {
    font-size: 0.85rem;
  }
  
  .dashboard-labels .label-subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }
  
  .table-responsive {
    font-size: 0.9rem;
  }
  
  .dashboard-card .card-body {
    padding: 1rem 0.8rem;
  }
  
  .dashboard-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-right: 0.6rem;
  }
  
  .dashboard-card .card-value {
    font-size: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
    margin-right: 0.5rem;
  }
}
