@charset "utf-8";

/* CSS Document */

table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
  

    }
 
 

    th, td {
      padding: 10px 12px;
      border-bottom: 1px solid #ddd;
      vertical-align: middle;
      text-align: left;
    }

    th {
      background: #f5f5f5;
      font-weight: 600;
    }

    img.thumb {
      width: 90px;
      height: 60px;
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }

    a {
      color: var(--farbe-primaer);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .small {
      font-size: 0.85rem;
      color: #666;
    }

    @media (max-width: 700px) {
      table,
      thead,
      tbody,
      th,
      td,
      tr {
        display: block;
      }

      thead {
        display: none;
      }

      tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
      }

      td {
        border: none;
        padding: 6px 0;
      }

      td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 2px;
      }
    }

	.thumb-link {
		display: inline-block;
		overflow: hidden;
		border-radius: 6px;
		}

	.thumb-link img {
	display: block;
	

	transition:
		transform 0.25s ease,
		opacity 0.25s ease,
		box-shadow 0.25s ease;

	cursor: pointer;
	}

	.thumb-link:hover img {
	transform: scale(1.05);
	opacity: 0.88;

	box-shadow:
		0 4px 12px rgba(0,0,0,0.35);
	}




