﻿/* Custom Styling for PT. AXINDO INFINITAS NETWORK (Ainet ATP) */
:root {
  --ainet-blue: #0066FF;
  --ainet-blue-dark: #0047b3;
  --ainet-red: #e11d48;
  --ainet-navy: #0b132b;
  --ainet-surface: #1c2541;
  --success: #10b981;
  --danger: #ef4444;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  background-color: #0b132b;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0b132b;
}
::-webkit-scrollbar-thumb {
  background: #222f49;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0066FF;
}

/* Touch Friendly Elements */
button, input, select, textarea {
  touch-action: manipulation;
}

/* Mobile Safe Area on mobile, normal padding on desktop */
.pb-safe {
  padding-bottom: calc(env(safe-area-inset-bottom, 16px) + 72px);
}

@media (min-width: 768px) {
  .pb-safe {
    padding-bottom: 2.5rem !important;
  }
}

/* Signature Canvas */
.signature-canvas {
  touch-action: none;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  cursor: crosshair;
}

/* GPS Pulse Animation */
@keyframes gps-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.gps-live-badge {
  animation: gps-pulse 2s infinite;
}

/* Print Styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
}