    .streaming {
      background: #fff;
      padding: 20px;
      margin: 0;
      color: #222;
    }
	
    /* --- Sprachauswahl Dropdown --- */
    .streaming .dropdown {
      position: relative;
      width: 240px;
      user-select: none;
      margin-bottom: 30px;
    }

    .streaming .dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 16px;
      cursor: pointer;
      background-color: #f4f8fc;
      transition: background-color 0.2s ease;
    }

    .streaming .dropdown-toggle img {
      height: 20px;
      margin-left: 10px;
    }

    .streaming .dropdown-options {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 6px;
      background-color: #f4f8fc;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      display: none;
      max-height: 300px;
      overflow-y: auto;
    }

    .streaming .dropdown-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .streaming .dropdown-option img {
      height: 20px;
      margin-left: 10px;
    }

    .streaming .dropdown-option:hover {
      background-color: #e1effc;
    }

    /* --- Sender & Streaming Container --- */
    .streaming .container {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .streaming .card {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 10px 15px;
      width: 160px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

	.streaming .card .logo-container {
	  height: 30px;             /* feste Höhe */
	  display: flex;            /* zentrieren */
	  align-items: center;      /* vertikal zentrieren */
	  justify-content: center;  /* horizontal zentrieren */
	}

	.streaming .card .logo-container img {
	  max-height: 100%;   /* passt in die 30px Höhe */
	  max-width: 100%;    /* passt in die Container-Breite */
	  height: auto;
	  width: auto;
	  object-fit: contain;
	}


    .streaming .time {
      font-size: 0.9em;
      color: #333;
    }

    .streaming .card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      cursor: pointer;
    }

    .streaming .watch {
      font-size: 0.9em;
      color: #666;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .streaming .bx {
      font-size: 1.1em;
      vertical-align: middle;
      color: #666;
    }

    /* Hover-Effekt nur für card innerhalb card-link */
    .streaming .card-link:hover .card {
      transform: scale(1.03);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }