:root {
  --primary-color: #1976d2;
  --primary-dark: #0d47a1;
  --primary-light: #bbdefb;
  --accent-color: #f44336;
  --text-color: #212121;
  --text-secondary: #757575;
  --background-color: #f5f5f5;
  --card-color: #ffffff;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --border-radius: 8px;
  --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-elevated: 0 4px 10px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.actions {
  display: flex;
  gap: 0.5rem;
}

button {
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.1s;
}

button:active {
  transform: scale(0.98);
}

button.primary {
  background-color: var(--accent-color);
  color: white;
  font-weight: 500;
}

button.primary:hover {
  background-color: #d32f2f;
}

#refresh-btn,
#header-install-btn {
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  border-radius: 50%;
}

#refresh-btn:hover,
#header-install-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#header-install-btn {
  position: relative;
}

#header-install-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

main {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0; /* Ensure no gap between header and main */
}

#map {
  width: 100%;
  flex: 1;
  min-height: 200px;
  height: calc(100vh - 80px); /* Fixed height calculation */
  position: relative;
  top: 0;
  left: 0;
}

/* Advertising Section */
.ad-container {
  background-color: var(--card-color);
  border-top: 1px solid #eee;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.ad-content {
  max-width: 1200px;
  margin: 0 auto;
}

.ad-banner {
  margin-bottom: 1rem;
}

.ad-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#paypal-button-container-P-2EN67504XR509813ENB5EYWI {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 25%;
}

.ad-square {
  flex: 0 0 auto;
}

.ad-placeholder {
  background-color: var(--background-color);
  border: 2px dashed #ccc;
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
  text-align: center;
}

.ad-placeholder:hover {
  border-color: var(--primary-color);
}

.ad-placeholder.banner {
  width: 100%;
  max-width: 728px;
  height: 90px;
  margin: 0 auto;
}

.ad-placeholder.square {
  width: 300px;
  height: 250px;
}

/* Responsive ad adjustments */
@media (max-width: 768px) {
  .ad-row {
    flex-direction: column;
    align-items: center;
  }

  .ad-placeholder.banner {
    max-width: 100%;
    height: 60px;
  }

  .ad-placeholder.square {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 320px) {
  .ad-placeholder.square {
    width: 250px;
    height: 180px;
  }
}

footer {
  background-color: var(--card-color);
  padding: 1rem 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

footer .disclaimer {
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 0.75rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-elevated);
}

.modal-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 500;
}

.close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.modal-body {
  padding: 1rem;
}

#confirm-location-map {
  height: 200px;
  margin: 1rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cancel-btn {
  background-color: transparent;
  color: var(--text-secondary);
}

.cancel-btn:hover {
  background-color: #eee;
}

.submit-btn {
  min-width: 100px;
}

/* Loading overlay */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#loading-overlay.active {
  display: flex;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(25, 118, 210, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--card-color);
  color: var(--text-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-elevated);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 90%;
}

.toast.active {
  opacity: 1;
}

.toast.success {
  background-color: var(--success-color);
  color: white;
}

.toast.error {
  background-color: var(--accent-color);
  color: white;
}

.toast.warning {
  background-color: var(--warning-color);
  color: white;
}

/* Checkpoint info window */
.checkpoint-info {
  padding: 10px;
  max-width: 250px;
}

.checkpoint-info p {
  margin: 5px 0;
}

.checkpoint-time {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Install PWA prompt */
#install-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card-color);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 90;
  border-top: 3px solid var(--primary-color);
}

#install-prompt.active {
  display: block;
}

#install-prompt .prompt-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#install-prompt p {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  flex: 1;
}

#install-prompt .prompt-actions {
  display: flex;
  gap: 0.5rem;
}

#install-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
}

#install-btn:hover {
  background-color: var(--primary-dark);
}

#close-prompt-btn {
  background-color: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
}

#close-prompt-btn:hover {
  background-color: #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
    /* Reduce header padding */
  }

  header .container {
    flex-direction: row;
    /* Keep horizontal layout */
    align-items: center;
    gap: 0.5rem;
    min-height: 50px;
    /* Set fixed height */
  }

  header h1 {
    font-size: 1rem;
    /* Smaller title */
    flex: 1;
    min-width: 150px;
  }

  .actions {
    flex-wrap: nowrap;
    /* Prevent wrapping */
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
  }

  #refresh-btn {
    width: 32px;
    height: 32px;
  }

  #report-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
  }

  #route-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }

  .notification-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 0.4rem 0;
    /* Even smaller header padding */
  }

  header .container {
    flex-direction: row;
    /* Keep horizontal to save space */
    align-items: center;
    gap: 0.25rem;
    min-height: 40px;
    /* Smaller header height */
  }

  header h1 {
    font-size: 0.9rem;
    /* Much smaller title */
    flex: 1;
    min-width: 120px;
  }

  .actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .nav-link {
    font-size: 0.6rem;
    padding: 0.2rem 0.3rem;
  }

  #refresh-btn {
    width: 28px;
    height: 28px;
  }

  #report-btn {
    font-size: 0.6rem;
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
  }

  #route-btn {
    font-size: 0.6rem;
    padding: 0.3rem 0.5rem;
  }

  .notification-btn {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }

  .modal-content {
    width: 95%;
  }

  #install-prompt .prompt-content {
    flex-direction: column;
    align-items: flex-start;
  }

  #install-prompt p {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  #install-prompt .prompt-actions {
    width: 100%;
    justify-content: space-between;
  }

  #map {
    height: calc(100vh - 80px);
    /* More space for map */
    max-height: none;
    flex: none;
  }

  footer {
    position: static;
    /* Remove fixed positioning on mobile to save space */
    padding: 0.25rem 0;
    /* Even smaller footer */
    font-size: 0.6rem;
  }

  main {
    margin-bottom: 0;
    /* No margin needed since footer is not fixed */
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.75rem 0;
  }

  header h1 {
    font-size: 1rem;
  }

  .actions {
    gap: 0.25rem;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
  }

  #refresh-btn {
    width: 28px;
    height: 28px;
  }

  #report-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
}

/* 
Heatmap Page Styles */
.heatmap-controls {
  background-color: var(--card-color);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  box-shadow: var(--shadow);
}

.control-group {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.control-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-secondary);
}

.control-group select {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  background-color: white;
}

#heatmap {
  width: 100%;
  height: 60vh;
  min-height: 400px;
}

.heatmap-stats {
  background-color: var(--card-color);
  padding: 2rem 0;
  border-top: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.stat-card {
  background-color: var(--background-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.stat-card span {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Social Sharing Styles */
.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.share-btn.twitter {
  background-color: #1da1f2;
  color: white;
}

.share-btn.twitter:hover {
  background-color: #0d8bd9;
}

.share-btn.facebook {
  background-color: #4267b2;
  color: white;
}

.share-btn.facebook:hover {
  background-color: #365899;
}

.share-btn.copy {
  background-color: var(--primary-color);
  color: white;
}

.share-btn.copy:hover {
  background-color: var(--primary-dark);
}

/* Admin Panel Styles */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.admin-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-card {
  background-color: var(--card-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.admin-card h3 {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.admin-card .value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.checkpoint-list {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.checkpoint-list h2 {
  padding: 1rem;
  background-color: var(--background-color);
  margin: 0;
  font-size: 1.25rem;
  border-bottom: 1px solid #eee;
}

.checkpoint-item {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkpoint-item:last-child {
  border-bottom: none;
}

.checkpoint-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-color);
}

.checkpoint-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.checkpoint-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-small {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 4px;
}

.btn-danger {
  background-color: var(--accent-color);
  color: white;
}

.btn-danger:hover {
  background-color: #d32f2f;
}

.btn-warning {
  background-color: var(--warning-color);
  color: white;
}

.btn-warning:hover {
  background-color: #f57c00;
}

/* Navigation Enhancement */
.nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: background-color 0.2s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
  background-color: var(--accent-color);
}

/* Responsive adjustments for new features */
@media (max-width: 768px) {
  .heatmap-controls .container {
    text-align: center;
  }

  .control-group {
    display: block;
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .checkpoint-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .checkpoint-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Push Notification Styles */
.notification-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  transition: all 0.2s;
}

.notification-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.notification-btn.subscribed {
  background-color: var(--success-color);
  border-color: var(--success-color);
}

.notification-btn.subscribed:hover {
  background-color: #45a049;
}

/* Notification Prompt */
.notification-prompt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-elevated);
  max-width: 350px;
  z-index: 1000;
  animation: slideInUp 0.3s ease-out;
  border-left: 4px solid var(--primary-color);
}

.notification-prompt-content {
  padding: 1rem;
}

.notification-prompt-icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.notification-prompt-text h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-color);
  font-size: 1.1rem;
}

.notification-prompt-text p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.notification-prompt-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.notification-prompt-actions .btn {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.notification-prompt-actions .btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.notification-prompt-actions .btn-primary:hover {
  background-color: var(--primary-dark);
}

.notification-prompt-actions .btn-secondary {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid #ddd;
}

.notification-prompt-actions .btn-secondary:hover {
  background-color: #f5f5f5;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Notification Status Indicator */
.notification-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

.notification-status.enabled {
  background-color: var(--success-color);
  color: white;
}

.notification-status.disabled {
  background-color: var(--text-secondary);
  color: white;
}

/* Mobile responsive adjustments for notifications */
@media (max-width: 768px) {
  .notification-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  .notification-prompt {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .notification-prompt-actions {
    justify-content: stretch;
  }

  .notification-prompt-actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .notification-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}

/* Push Not
ification Styles */
.notification-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.notification-btn.subscribed {
  background: var(--success-color);
  border-color: var(--success-color);
}

.notification-btn.subscribed:hover {
  background: #45a049;
}

.notification-prompt {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.notification-prompt-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.notification-prompt-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notification-prompt-text h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.notification-prompt-text p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.notification-prompt-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.notification-prompt-actions .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.notification-prompt-actions .btn-primary {
  background: var(--primary-color);
  color: white;
}

.notification-prompt-actions .btn-primary:hover {
  background: var(--primary-dark);
}

.notification-prompt-actions .btn-secondary {
  background: #e0e0e0;
  color: var(--text-color);
}

.notification-prompt-actions .btn-secondary:hover {
  background: #d0d0d0;
}

.notification-status {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.notification-status.enabled {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success-color);
}

.notification-status.disabled {
  background: rgba(158, 158, 158, 0.1);
  color: var(--text-secondary);
}

/* Enhanced Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  #map {
    height: calc(100vh - 140px);
  }

  .actions {
    gap: 1rem;
  }

  button {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 1140px;
  }

  #map {
    height: calc(100vh - 130px);
  }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 960px;
  }

  header .container {
    flex-direction: row;
    align-items: center;
  }

  .actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  #map {
    height: calc(100vh - 120px);
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 720px;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .actions {
    justify-content: center;
    width: 100%;
  }

  #map {
    height: calc(100vh - 160px);
  }

  .modal-content {
    width: 95%;
    margin: 1rem;
  }
}

/* Mobile Large (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
  .container {
    padding: 0 0.75rem;
  }

  header {
    padding: 0.75rem 0;
  }

  .actions {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  #map {
    height: calc(100vh - 140px);
  }

  button {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .container {
    padding: 0 0.5rem;
  }

  header {
    padding: 0.5rem 0;
  }

  header h1 {
    font-size: 1rem;
  }

  .actions {
    gap: 0.25rem;
    flex-direction: column;
    width: 100%;
  }

  .actions button,
  .actions .nav-link {
    width: 100%;
    text-align: center;
    margin: 0.125rem 0;
  }

  #map {
    height: calc(100vh - 180px);
  }

  button {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .modal-content {
    width: 98%;
    margin: 0.5rem;
  }
}

/* Notification responsiveness */
@media (max-width: 768px) {
  .notification-prompt {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .notification-prompt-content {
    margin: 0;
    padding: 1.5rem;
  }

  .notification-prompt-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .notification-prompt-actions .btn {
    width: 100%;
  }

  .notification-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {

  button,
  .nav-link {
    min-height: 44px;
    /* Apple's recommended touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-header .close-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}

/* Live Updates Indicator */
.update-indicator {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(25, 118, 210, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.update-indicator.active {
  opacity: 1;
  transform: translateY(0);
}

.update-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Mobile adjustments for update indicator */
@media (max-width: 768px) {
  .update-indicator {
    top: 70px;
    right: 10px;
    left: 10px;
    justify-content: center;
    font-size: 0.75rem;
  }
}

/* Traffic Integration Styles */
.traffic-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  z-index: 1000;
}

.traffic-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.traffic-toggle:hover {
  background-color: #f5f5f5;
}

.traffic-toggle input[type="checkbox"] {
  margin: 0;
}

.traffic-legend {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.traffic-legend-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.125rem 0;
}

.traffic-color {
  width: 12px;
  height: 3px;
  border-radius: 2px;
}

.traffic-color.green {
  background-color: #4CAF50;
}

.traffic-color.yellow {
  background-color: #FF9800;
}

.traffic-color.red {
  background-color: #F44336;
}

.traffic-color.dark-red {
  background-color: #B71C1C;
}

/* Route Planning Styles */
.route-panel {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  transform: translateX(320px);
  transition: transform 0.3s ease;
}

.route-panel.active {
  transform: translateX(0);
}

.route-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.route-panel-header h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
}

.route-close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-secondary);
}

.route-input-group {
  margin-bottom: 1rem;
}

.route-input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.route-input-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.route-alerts {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  padding: 0.75rem;
  margin-top: 1rem;
}

.route-alerts h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #856404;
}

.route-alert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.8rem;
  color: #856404;
}

.route-alert-icon {
  width: 16px;
  height: 16px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Mobile adjustments for route panel */
@media (max-width: 768px) {
  .route-panel {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 50vh;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    transform: translateY(-100%);
  }

  .route-panel.active {
    transform: translateY(0);
  }

  .traffic-controls {
    position: relative;
    margin: 0.5rem;
    width: auto;
  }
}

/* Live Chat/Comments Styles */
.chat-toggle-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-elevated);
  z-index: 1000;
  transition: all 0.3s ease;
}

.chat-toggle-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.chat-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: var(--shadow-elevated);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.chat-panel.active {
  transform: translateY(0);
}

.chat-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.chat-panel-header h3 {
  margin: 0;
  font-size: 1rem;
}

.chat-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: #f9f9f9;
}

.chat-placeholder {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  padding: 2rem 1rem;
}

.chat-message {
  background: white;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.chat-username {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.chat-timestamp {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.chat-message-content {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
  word-wrap: break-word;
}

.chat-input-container {
  border-top: 1px solid #eee;
  padding: 1rem;
  background: white;
}

.chat-input-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.chat-input-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
}

.chat-input-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.chat-input-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.chat-char-count {
  font-size: 0.75rem;
  color: #666;
}

/* Mobile adjustments for chat */
@media (max-width: 768px) {
  .chat-panel {
    width: 100%;
    height: 60vh;
    right: 0;
    left: 0;
  }

  .chat-toggle-btn {
    bottom: 80px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .chat-messages {
    padding: 0.75rem;
  }

  .chat-message {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .chat-input-container {
    padding: 0.75rem;
  }
}

/* Enhanced button styles for route and chat */
#route-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

#route-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Improved mobile responsiveness for all new features */
@media (max-width: 480px) {
  .traffic-controls {
    position: static;
    margin: 0.5rem;
    width: auto;
  }

  .route-panel {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    border-radius: 0;
    transform: translateY(-100%);
  }

  .route-panel.active {
    transform: translateY(0);
  }

  .update-indicator {
    top: 60px;
    right: 5px;
    left: 5px;
    font-size: 0.7rem;
  }

  #route-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

.chat -close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: #f8f9fa;
}

.chat-placeholder {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  padding: 2rem;
}

.chat-message {
  background: white;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.chat-username {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.chat-timestamp {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.chat-message-content {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
}

.chat-input-container {
  padding: 1rem;
  border-top: 1px solid #eee;
  background: white;
}

.chat-input-group input,
.chat-input-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.chat-input-group textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 120px;
}

.chat-input-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-char-count {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
}

/* Mobile adjustments for chat */
@media (max-width: 768px) {
  .chat-panel {
    width: 100%;
    height: 60vh;
    right: 0;
    left: 0;
  }

  .chat-toggle-btn {
    bottom: 80px;
    right: 15px;
  }
}

/* Route button in header */
#route-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  transition: all 0.2s;
}

#route-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Additional responsive improvements */
@media (max-width: 480px) {
  .traffic-controls {
    position: static;
    margin: 0.5rem;
    width: auto;
  }

  .route-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    transform: translateX(100%);
  }

  .route-panel.active {
    transform: translateX(0);
  }
}
/* Hamburger Menu Styles */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.report-btn-main {
  flex-shrink: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
    order: 2;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu .nav-link,
  .nav-menu button {
    width: 100%;
    margin: 0.25rem 0;
    justify-content: center;
    text-align: center;
  }
  
  .report-btn-main {
    order: 3;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  
  header .container {
    min-height: 60px;
  }
  
  header img {
    height: 50px !important;
    order: 1;
  }
}

@media (max-width: 600px) {
  .hamburger-btn {
    width: 35px;
    height: 35px;
  }
  
  .hamburger-btn span {
    width: 20px;
    height: 2px;
  }
  
  .report-btn-main {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
  
  header img {
    height: 40px !important;
  }
  
  header .container {
    min-height: 50px;
  }
}

/* Fix map positioning */
#map {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
}

@media (max-width: 768px) {
  #map {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    flex: none !important;
  }
}

@media (max-width: 600px) {
  #map {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    flex: none !important;
  }
}/* T
raffic Toggle Button in Hamburger Menu */
.traffic-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.traffic-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.traffic-toggle-btn.active {
  background: #4CAF50;
  border-color: #4CAF50;
}

/* Hide the original traffic controls on mobile since we have it in the menu */
@media (max-width: 768px) {
  .traffic-controls {
    display: none !important;
  }
  
  .traffic-toggle-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 600px) {
  .traffic-toggle-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}/* Force mo
bile map height - highest specificity */
@media (max-width: 768px) {
  body #map {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    flex: none !important;
  }
}

@media (max-width: 600px) {
  body #map {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    flex: none !important;
  }
}

@media (max-width: 480px) {
  body #map {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    flex: none !important;
  }
}/* Qui
ck Report Floating Action Button */
.quick-report-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d32f2f);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 0.7rem;
  font-weight: 500;
}

.quick-report-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(244, 67, 54, 0.6);
}

.quick-report-fab:active {
  transform: scale(0.95);
}

.quick-report-fab svg {
  margin-bottom: 2px;
}

.fab-text {
  font-size: 0.6rem;
  line-height: 1;
}

/* Pulse animation for attention */
.quick-report-fab.pulse {
  animation: fabPulse 2s infinite;
}

@keyframes fabPulse {
  0% {
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.8), 0 0 0 10px rgba(244, 67, 54, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .quick-report-fab {
    bottom: 80px; /* Above chat button */
    right: 15px;
    width: 56px;
    height: 56px;
  }
  
  .fab-text {
    font-size: 0.55rem;
  }
}

@media (max-width: 600px) {
  .quick-report-fab {
    bottom: 70px;
    right: 12px;
    width: 52px;
    height: 52px;
  }
  
  .quick-report-fab svg {
    width: 20px;
    height: 20px;
  }
  
  .fab-text {
    font-size: 0.5rem;
  }
}/* Che
ckpoint Verification System Styles */
.trust-indicator {
  font-weight: 500;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.65rem;
}

.trust-indicator.high-trust {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.trust-indicator.medium-trust {
  background: rgba(255, 152, 0, 0.1);
  color: #ef6c00;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.trust-indicator.low-trust {
  background: rgba(244, 67, 54, 0.1);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.trust-indicator.mixed-trust {
  background: rgba(158, 158, 158, 0.1);
  color: #424242;
  border: 1px solid rgba(158, 158, 158, 0.3);
}

.trust-indicator.unverified {
  background: rgba(158, 158, 158, 0.05);
  color: #757575;
  border: 1px solid rgba(158, 158, 158, 0.2);
  font-style: italic;
}

/* Verification buttons */
.verification-buttons {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.verification-buttons button {
  font-size: 0.65rem !important;
  padding: 0.2rem 0.4rem !important;
  border-radius: 3px !important;
  transition: all 0.2s ease;
}

.verification-buttons button:hover {
  transform: scale(1.05);
}

.verification-buttons button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Enhanced checkpoint info styling */
.checkpoint-info {
  padding: 12px;
  max-width: 280px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.checkpoint-info p {
  margin: 6px 0;
  line-height: 1.4;
}

.checkpoint-time {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Mobile verification adjustments */
@media (max-width: 768px) {
  .checkpoint-info {
    max-width: 250px;
    padding: 10px;
  }
  
  .trust-indicator {
    font-size: 0.6rem;
    padding: 0.15rem 0.3rem;
  }
  
  .verification-buttons button {
    font-size: 0.6rem !important;
    padding: 0.15rem 0.3rem !important;
  }
}

/* Verification success animations */
@keyframes verificationSuccess {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.verification-success {
  animation: verificationSuccess 0.3s ease;
}