﻿/* Tailwind CDN ve FontAwesome ikonu yükleyen ortak stil ve animasyonlar */
:root {
  --primary-blue: #0f2744;
  --secondary-blue: #1e3a8a;
  --accent-yellow: #f59e0b;
  --yellow-glow: rgba(245, 158, 11, 0.25);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f1f5f9;
  color: #1e293b;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Badge Pulse */
.pulse-truck {
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Plaka Stili (Turkiye Standardi) */
.tr-plate {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 4px;
  font-family: 'Arial Black', Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  padding: 0 6px 0 0;
}
.tr-plate .tr-flag {
  background: #003399;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 1px 0 0 1px;
  margin-right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
