  .termine-card {
    max-width: 1000px;
    margin: 20px auto 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow-x: auto;
  }

  table.termine {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
  }

  table.termine thead th {
    background-color: #1f4e79;
    color: white;
    padding: 12px;
    text-align: left;
  }

  table.termine td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
  }

  table.termine tbody tr:nth-child(even) {
    background-color: #f7f9fc;
  }

  table.termine tbody tr:hover {
    background-color: #eaf3ff;
  }

  table.termine td:first-child,
  table.termine td:nth-child(2) {
    white-space: nowrap;
  }