/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2026 | 09:06:05 */
table.privacy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.75rem 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }

  /* --- Header ---------------------------------------------------- */
  table.privacy-table thead {
    background: #f8fafc;
  }

  table.privacy-table thead th {
    padding: 0.875rem 1.25rem;
    text-align: left;
    vertical-align: bottom;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
  }

  /* --- Body ------------------------------------------------------ */
  table.privacy-table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: top;
    border-bottom: 1px solid #f1f5f9;
    word-break: break-word;
  }

  table.privacy-table tbody tr:last-child td {
    border-bottom: none;
  }

  table.privacy-table tbody tr {
    transition: background-color 0.15s ease;
  }

  table.privacy-table tbody tr:hover {
    background: #f8fafc;
  }

  /* Erste Spalte (Anbieter) als Eyecatcher */
  table.privacy-table tbody td:first-child {
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
  }

  /* Drittland-Spalte etwas kompakter */
  table.privacy-table tbody td:nth-child(3) {
    white-space: nowrap;
    color: #475569;
  }

  /* --- Links innerhalb der Tabelle ------------------------------ */
  table.privacy-table a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.25);
    transition: border-color 0.15s ease, color 0.15s ease;
  }

  table.privacy-table a:hover {
    color: #1d4ed8;
    border-bottom-color: currentColor;
  }

  /* --- Responsive: horizontales Scrollen auf kleinen Screens --- */
  @media (max-width: 720px) {
    table.privacy-table {
      display: block;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      white-space: nowrap;
      font-size: 0.875rem;
    }

    table.privacy-table thead th,
    table.privacy-table tbody td {
      padding: 0.75rem 1rem;
    }
  }

  /* --- Dark Mode (optional) ------------------------------------- */
  @media (prefers-color-scheme: dark) {
    table.privacy-table {
      background: #0f172a;
      color: #e2e8f0;
      border-color: #1e293b;
      box-shadow: none;
    }
  
    table.privacy-table thead {
      background: #111c2f;
    }

    table.privacy-table thead th {
      color: #94a3b8;
      border-bottom-color: #1e293b;
    }

    table.privacy-table tbody td {
      border-bottom-color: #1e293b;
    }

    table.privacy-table tbody tr:hover {
      background: #111c2f;
    }

    table.privacy-table tbody td:first-child {
      color: #f1f5f9;
    }

    table.privacy-table a {
      color: #60a5fa;
      border-bottom-color: rgba(96, 165, 250, 0.3);
    }
  }