#map { height: 300px; }
.tool-card { transition: all 0.3s ease; }
.tool-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.bg-primary-dark { background-color: #1d4ed8; }
.bg-primary-dark:hover { background-color: #1e40af; }
.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.loading-spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid white;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.qr-canvas { max-width: 200px; margin: 10px auto; }
.printable { display: none; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.digipin-input { max-width: 250px; text-align: center; text-transform: uppercase; }
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.modal.open { display: flex; }
footer p, footer a, footer ul li a { color: white !important; }