/* ============================================
   Auto Servis — Globalni CSS
   ============================================ */

/* Tijelo */
body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ============================================
   Navbar
   ============================================ */
.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
}

/* ============================================
   Hero sekcija (samo index.php)
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* ============================================
   Kartice na index.php
   ============================================ */
.menu-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.menu-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #0d6efd;
}

.menu-title {
  font-size: 1.15rem;
  font-weight: 600;
}

/* ============================================
   Tabele
   ============================================ */
.table-responsive {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.table thead th {
  background-color: #2b6cb0;
  color: #fff;
  font-weight: 600;
  border: none;
  white-space: nowrap;
}

.table tbody tr:hover {
  background-color: #ebf8ff;
}

/* ============================================
   Forme
   ============================================ */
.form-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ============================================
   Print stranice
   ============================================ */
@media print {
  .navbar, footer, .no-print, .btn {
    display: none !important;
  }

  body {
    background: #fff !important;
  }

  .container {
    max-width: 100% !important;
  }
}

/* ============================================
   Logo
   ============================================ */
.logo img {
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}

/* ============================================
   Sekcija headeri
   ============================================ */
.section-header {
  text-align: center;
  margin: 40px 0 20px;
}

.section-header h3 {
  font-weight: 700;
  color: #1a365d;
}

/* ============================================
   Badges i status
   ============================================ */
.badge-status {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
}

/* ============================================
   Login stranica
   ============================================ */
.login-page {
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 380px;
}

.login-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b6cb0;
}
