@charset "UTF-8";
/*!
 * Copyright (c) 2025. Niedersächsische Tierseuchenkasse, Hannover, Germany. All rights reserved
 */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: linear-gradient(135deg, #2c5f8d 0%, #1e4163 100%);
  color: white;
  padding: 30px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

header p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Alert Box - Prominent Warning */
.alert {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white !important;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
  border-left: 5px solid #bd2130;
}

.alert h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert h2::before {
  content: "⚠️";
  font-size: 1.8rem;
}

.alert p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: white !important;
}

.alert strong {
  font-weight: 600;
  color: white !important;
}

/* Info Box */
.info-box {
  background: #e7f3ff;
  border-left: 4px solid #0066cc;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.info-box.warning {
  background: #fff3cd;
  border-left-color: #ffc107;
}

.info-box.success {
  background: #d4edda;
  border-left-color: #28a745;
}

/* Section Cards */
.card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card h2 {
  color: #2c5f8d;
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

.card h3 {
  color: #495057;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.card ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.card li {
  margin-bottom: 8px;
}

.card ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.card ol li {
  margin-bottom: 10px;
}

/* Icon Classes - Icons werden per CSS eingefügt */
.icon-shield::before {
  content: "🛡️";
}

.icon-eye::before {
  content: "👁️";
}

.icon-phone::before {
  content: "📞";
}

.icon-bird::before {
  content: "🦆";
}

.icon-alert::before {
  content: "🚨";
}

.icon-money::before {
  content: "💰";
}

.icon-chart::before {
  content: "📊";
}

.icon-file::before {
  content: "📄";
}

.icon-checkmark::before {
  content: "✔️";
}

.icon-warning::before {
  content: "⚠️";
}

/* Buttons and Links */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2c5f8d;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn:hover {
  background: #1e4163;
}

.btn-secondary {
  background: #6c757d;
}

.btn-secondary:hover {
  background: #5a6268;
}

.btn-danger {
  background: #dc3545;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-white {
  background: white;
  color: #dc3545;
  font-weight: 600;
}

.btn-white:hover {
  background: #f8f9fa;
}

/* Action Grid */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.action-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  border: 2px solid #dee2e6;
  transition: border-color 0.3s ease;
}

.action-item:hover {
  border-color: #2c5f8d;
}

.action-item h4 {
  color: #2c5f8d;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.contact-info h3 {
  color: #2c5f8d;
  margin-bottom: 15px;
}

.contact-detail {
  margin-bottom: 15px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: #495057;
}

.contact-detail a {
  color: #2c5f8d;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Downloads Section */
.downloads {
  margin-top: 20px;
}

.download-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.download-item:hover {
  background: #e9ecef;
}

.download-item::before {
  content: "📄";
  margin-right: 10px;
  font-size: 1.2rem;
}

.download-item a {
  color: #2c5f8d;
  text-decoration: none;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }
  .alert h2 {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .card {
    padding: 20px;
  }
  .action-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    display: block;
    text-align: center;
    margin-right: 0;
    width: 100%;
  }
}
/* Utility Classes */
.text-center {
  text-align: center;
}

strong {
  font-weight: 600;
  color: #2c3e50;
}

a {
  color: #2c5f8d;
}

a:hover {
  color: #1e4163;
}

footer .footer-inline {
  background: #2c5f8d;
  color: white;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

footer.footer-inline p {
  margin: 5px 0;
}