body { 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
  margin: 0; 
  padding: 24px; 
  color: #2d3748; 
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  min-height: 100vh;
  line-height: 1.6;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for iOS */
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 32px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

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

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #2d3748;
}

.modal-content p {
  font-size: 16px;
  color: #4a5568;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.modal-button {
  padding: 12px 32px;
  border: none;
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(172, 33, 36, 0.3);
}

.modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(172, 33, 36, 0.4);
}

.modal-button:active {
  transform: translateY(0) scale(0.98);
}
h1 { 
  font-size: 32px; 
  font-weight: 700; 
  margin-bottom: 8px; 
  letter-spacing: -0.5px;
  text-decoration: none !important;
  border-bottom: none !important;
}
h1 a,
h1 a:link,
h1 a:visited,
h1 a:hover,
h1 a:active,
h1 a:focus {
  text-decoration: none !important;
  color: inherit !important;
  border-bottom: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  display: inline-block;
  cursor: pointer;
  -webkit-text-decoration: none !important;
  -moz-text-decoration: none !important;
  -ms-text-decoration: none !important;
  -o-text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 0 !important;
  text-underline-position: from-font !important;
}
h1 span { 
  color: #ac2124; 
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
  border-bottom: none !important;
}
h1 a span {
  text-decoration: none !important;
  border-bottom: none !important;
  -webkit-text-decoration: none !important;
}
h2.subheading { 
  font-size: 15px; 
  color: #718096; 
  margin-bottom: 24px; 
  font-weight: 400;
  letter-spacing: 0.3px;
}
/* Hamburger menu */
.hamburger {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(172, 33, 36, 0.3);
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.tabs { 
  margin-bottom: 20px; 
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab-button { 
  padding: 12px 20px; 
  border: none; 
  background: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(10px);
  cursor: pointer; 
  border-radius: 12px; 
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  color: #4a5568;
}
.tab-button:hover { 
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.tab-button.active { 
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%); 
  color: #fff; 
  box-shadow: 0 4px 12px rgba(172, 33, 36, 0.3);
}
.tab-content { 
  display: none; 
  animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-content.active { display: block; }
.filters { 
  margin-bottom: 16px; 
  padding: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}
.filters label { 
  margin-right: 15px; 
  font-weight: 500;
  color: #4a5568;
}
input[type="date"] { 
  padding: 8px 12px; 
  border: 2px solid #e2e8f0; 
  border-radius: 8px; 
  margin-right: 5px; 
  transition: all 0.2s ease;
}
input[type="date"]:focus {
  outline: none;
  border-color: #ac2124;
  box-shadow: 0 0 0 3px rgba(172, 33, 36, 0.1);
}
.table-container { 
  overflow-x: auto; 
  max-width: 100%; 
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#searchAll {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  margin: 0 0 16px 0;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fff;
}
#searchAll:focus {
  outline: none;
  border-color: #ac2124;
  box-shadow: 0 0 0 3px rgba(172, 33, 36, 0.1);
}
table { 
  border-collapse: collapse; 
  width: 100%; 
  font-size: 13px; 
  table-layout: fixed; 
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
thead { 
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%); 
  color: #fff; 
  position: sticky; 
  top: 0; 
  z-index: 2; 
}
th { 
  padding: 12px; 
  text-align: left; 
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
td { 
  border: none; 
  border-bottom: 1px solid #f1f5f9; 
  padding: 12px; 
  text-align: left; 
  white-space: normal; 
  word-wrap: break-word; 
  overflow-wrap: break-word; 
}
tr:nth-child(even) { background: #f8fafc; }
tbody tr { 
  transition: all 0.2s ease;
}
tbody tr:hover { 
  background: #fff5f5; 
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(172, 33, 36, 0.1);
}
#loadMoreAll { 
  display: block; 
  margin: 24px auto; 
  padding: 12px 24px; 
  border: none; 
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%); 
  color: #fff; 
  font-size: 14px; 
  font-weight: 600;
  border-radius: 25px; 
  cursor: pointer; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(172, 33, 36, 0.3);
}
#loadMoreAll:hover { 
  transform: translateY(-2px) scale(1.02); 
  box-shadow: 0 6px 16px rgba(172, 33, 36, 0.4);
}
#loadMoreAll:active { 
  transform: translateY(0) scale(0.98); 
}
#categoryChart { max-width: 800px; margin: 20px auto 0 auto; }
#crimeHeadline { text-align: center; font-size: 30px; font-weight: 800; line-height: 1.35; margin: 24px auto;}
#crimeHeadline span { color: inherit; }   /* override any old rule */
#crimeHeadline .pct { color: #ac2124; font-weight: 900; }
#crimeHeadline .trend-word { font-weight: 800; }
#yoyTrendChart { 
  max-width: 1300px; 
  margin: 20px auto 0; 
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#categoryHeadline { text-align: center; font-size: 16px; font-weight: 700; margin: 10px auto 6px auto; }
#dashFilters { display: flex; justify-content: center; gap: 14px; margin-bottom: 6px; }
#dashFilters label { margin-right: 0; }

#mcChart,#bikeChart,#partyChart{ 
  max-width:800px; 
  margin:20px auto 0; 
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Match main headline size/weight for all subheadlines */
.subheadline { 
  text-align: center; 
  font-size: 28px; 
  font-weight: 700; 
  line-height: 1.4; 
  margin: 32px auto 20px; 
  color: #2d3748;
  padding: 0 16px;
}
@media (max-width: 768px) { 
  .subheadline { 
    font-size: 16px; 
    margin: 24px 0 12px 0; 
    padding: 14px 18px;
    line-height: 1.6;
    text-align: left;
    background: linear-gradient(135deg, rgba(172, 33, 36, 0.06) 0%, rgba(172, 33, 36, 0.02) 100%);
    border-radius: 14px;
    border-left: 3px solid #ac2124;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  } 
}

/* Any headline variable */
.pct, .var { 
  color: #ac2124; 
  font-weight: 800; 
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trend-word {
  color: #2d3748;
  font-weight: 700;
}

.adv-help code {
  background: #f1f5f9; 
  padding: 4px 8px; 
  border-radius: 6px; 
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: #2d3748;
  border: 1px solid #e2e8f0;
}
.paramlist, .examplelist { margin: 8px 0 16px 18px; }
.paramlist li, .examplelist li { margin: 8px 0; }
.adv-help .note { color:#666; font-size:12px; margin-left:6px; }
.adv-help .notes { color:#555; font-size:13px; }

@media (max-width: 768px) {
  #crimeHeadline { font-size: 20px; }
}

#trendChart { max-width: 800px; margin: 20px auto 0 auto; }

/* Advanced resources */
#resources {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#resources button {
  margin: 8px 12px 8px 0;
  padding: 12px 20px;
  border: none;
  background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(172, 33, 36, 0.2);
}
#resources button:hover { 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(172, 33, 36, 0.3);
}
#resources h3 {
  color: #2d3748;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
#resources h4 {
  color: #4a5568;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* Mobile cards */
@media (max-width: 768px) {
  body { 
    margin: 0; 
    padding: 16px; 
    font-size: 14px; 
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  }
  
  h1 { 
    font-size: 24px; 
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  h1 a {
    display: inline-block;
  }
  
  h2.subheading { 
    font-size: 14px; 
    margin-bottom: 20px;
    color: #64748b;
    font-weight: 500;
  }

  /* Modal improvements */
  .modal-content {
    padding: 24px 20px;
    margin: 16px;
    max-width: calc(100% - 32px);
  }
  
  .modal-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .modal-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .modal-button {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
  }

  /* Hamburger menu */
  .hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 1001;
    background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(172, 33, 36, 0.3);
    transition: all 0.3s ease;
  }
  
  .hamburger:hover {
    box-shadow: 0 6px 16px rgba(172, 33, 36, 0.4);
    transform: scale(1.05);
  }
  
  .hamburger span {
    background: #fff !important;
  }

  /* Tabs - hidden by default on mobile, shown when hamburger is active */
  .tabs {
    position: fixed;
    top: 70px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .tabs.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .tab-button {
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    padding: 14px 16px;
    min-height: 48px;
    text-align: left;
    justify-content: flex-start;
  }

  /* Remove grid layout for mobile */
  .tab-button[data-tab="dashboard"],
  .tab-button[data-tab="allLogs"],
  .tab-button[data-tab="resources"] {
    order: unset;
    grid-column: unset;
  }

  /* Filters */
  .filters {
    padding: 10px;
    margin-bottom: 12px;
  }
  
  .filters label {
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
  }

  /* Search input */
  #searchAll {
    padding: 16px 18px;
    font-size: 16px; /* Prevents zoom on iOS */
    margin-bottom: 16px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
  }
  
  #searchAll:focus {
    border-color: #ac2124;
    box-shadow: 0 4px 12px rgba(172, 33, 36, 0.15);
    outline: none;
  }

  /* Table container */
  .table-container {
    padding: 16px;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    border-radius: 0;
    background: transparent;
  }

  /* Table mobile card view */
  table { 
    font-size: 12px; 
    width: 100%; 
    max-width: 100%; 
    border-collapse: separate; 
    border-spacing: 0;
  }
  
  table thead { 
    display: none; 
  }
  
  table, table tbody, table tr, table td { 
    display: block; 
    width: 100%; 
    max-width: 100%; 
    box-sizing: border-box; 
  }
  
  table tr { 
    margin-bottom: 16px; 
    padding: 18px; 
    border-radius: 16px; 
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05); 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: 1px solid #e2e8f0;
    position: relative;
  }
  
  table tr:hover,
  table tr:active {
    box-shadow: 0 8px 24px rgba(172, 33, 36, 0.15), 0 2px 8px rgba(172, 33, 36, 0.1);
    transform: translateY(-3px);
    border-color: rgba(172, 33, 36, 0.2);
  }
  
  table td { 
    text-align: left; 
    padding: 8px 0; 
    border: none; 
    font-size: 13px; 
    line-height: 1.5;
  }
  
  /* Add labels before table cells on mobile */
  table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #4a5568;
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Hide labels for empty cells */
  table td:empty::before {
    display: none;
  }
  
  /* Unfold animation for extra fields */
  .extra-fields { 
    max-height: 0; 
    overflow: hidden; 
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-top 0.3s ease;
    padding: 0;
    margin-top: 0;
    border-top: 2px solid transparent;
  }
  
  tr.expanded .extra-fields { 
    max-height: 2000px; 
    opacity: 1;
    margin-top: 18px; 
    padding-top: 18px;
    border-top: 2px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 0 0 12px 12px;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 12px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-top 0.4s ease;
  }
  
  .extra-fields .field-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
  }
  
  .extra-fields .field-row:last-child {
    border-bottom: none;
  }
  
  .extra-fields .field-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
  }
  
  .extra-fields .field-value {
    font-size: 13px;
    color: #2d3748;
    line-height: 1.5;
    word-wrap: break-word;
  }
  
  /* Add visual indicator for expandable cards */
  table tr::after {
    content: "▼";
    position: absolute;
    top: 16px;
    right: 16px;
    color: #ac2124;
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  
  table tr.expanded::after {
    transform: rotate(180deg);
  }

  /* Charts */
  #yoyTrendChart, #mcChart, #bikeChart, #partyChart {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 0 0;
    padding: 12px 12px 40px 12px; /* Balanced horizontal padding */
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    position: relative;
  }
  
  /* Extra space for chart labels on mobile */
  #yoyTrendChart .apexcharts-canvas,
  #mcChart .apexcharts-canvas,
  #bikeChart .apexcharts-canvas,
  #partyChart .apexcharts-canvas {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
  
  /* Ensure chart containers don't cut off labels */
  #yoyTrendChart .apexcharts-svg,
  #mcChart .apexcharts-svg,
  #bikeChart .apexcharts-svg,
  #partyChart .apexcharts-svg {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Chart inner elements need space for rotated labels */
  #yoyTrendChart .apexcharts-inner,
  #mcChart .apexcharts-inner,
  #bikeChart .apexcharts-inner,
  #partyChart .apexcharts-inner {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  


  /* ApexCharts responsive */
  .apexcharts-canvas, 
  .apexcharts-svg, 
  .apexcharts-inner {
    max-width: 100% !important;
    width: 100% !important;
    overflow: visible !important;
  }

  /* Load more button */
  #loadMoreAll {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0;
    min-height: 52px; /* Better touch target */
    border-radius: 14px;
    background: linear-gradient(135deg, #ac2124 0%, #d32f2f 100%);
    box-shadow: 0 4px 12px rgba(172, 33, 36, 0.25);
    transition: all 0.3s ease;
  }
  
  #loadMoreAll:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(172, 33, 36, 0.2);
  }

  /* Resources section */
  #resources {
    padding: 16px;
    margin: 0 -12px;
    border-radius: 0;
  }
  
  #resources h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  #resources h4 {
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  
  #resources button {
    width: 100%;
    margin: 8px 0;
    padding: 14px 20px;
    font-size: 15px;
    min-height: 48px; /* Better touch target */
  }
  
  #resources p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .adv-help code {
    font-size: 11px;
    padding: 3px 6px;
    display: inline-block;
    word-break: break-all;
  }
  
  .paramlist, .examplelist {
    margin: 8px 0 12px 12px;
    padding-left: 8px;
  }
  
  .paramlist li, .examplelist li {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.6;
  }

  /* Dashboard filters */
  #dashFilters {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  #dashFilters label {
    margin-right: 0;
  }
}

/* Hide partial series from YoY chart legend - global CSS rule */
/* This targets the 2nd and 4th legend items which are the partial series */
#yoyTrendChart .apexcharts-legend-series:nth-child(2),
#yoyTrendChart .apexcharts-legend-series:nth-child(4) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  pointer-events: none !important;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #718096;
  font-size: 11px;
  margin-top: 40px;
}

footer p {
  margin: 0;
}

footer a {
  color: #ac2124;
  text-decoration: underline;
}

footer a:hover {
  color: #ac2124;
  text-decoration: underline;
}

