@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;
}

 /* Info Box */
.info-box {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
         }
 
.info-box.success {
    background: #f8f9fa;
    border-left-color: #8baa13;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
         }

/* 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;
}

.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(260px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

  .action-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    border: 4px solid #8baa13;
    transition: border-color 0.3s ease;
         }

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

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

/* 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;
}
