.table {
  table-layout: fixed;
  width: 100%;
}

.table thead th:first-child, .table tbody tr th {
  width: 8%;
}

.table thead th:nth-child(n+2), .table tbody tr td {
  width: 13.14%;
}
.occupied-slot {
  background-color: rgba(71, 64, 93, 0.3) !important;
  color: #fff;
}
.current-day-highlight {
  background-color: rgba(0, 123, 255, 0.2) !important;
  color: rgba(0, 123, 255, 1) !important;
}

.current-time-highlight {
  background-color: rgba(255, 193, 7, 0.2) !important;
  color: rgba(255, 193, 7, 1) !important;
  font-weight: bold !important;
}
.current-day-highlight.current-time-highlight {
  background-color: rgba(40, 167, 69, 0.2) !important;
  color: rgba(40, 167, 69, 1) !important;
}
.free-slot .sendeplan-cell-content {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sendeplan-cell-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.sendungsname-text {
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
.sendeplan-moderator {
  font-size: 0.95em;
  text-align: center;
  margin-bottom: 2px;
  color: #0dcaf0;
}


.sendeplan-link a {
  font-size: 0.9em;
  text-align: center;
  margin-top: 2px;
  color: #d07684 !important;
  text-decoration: none; 
}
.occupied-slot .sendeplan-link a {
  color: #ff7fff !important;
}
.sendeplan-divider {
  border: 1px solid rgba(255, 255, 255, 1);
  margin: 5px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .table {
    table-layout: auto;
  }
  .sendeplan-cell-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
  }
  .sendeplan-moderator, .sendeplan-sendungsname, .sendeplan-link {
    margin: 0;
    padding: 0 5px;
    text-align: center;
    flex-shrink: 0;
  }
  .sendeplan-sendungsname {
    order: 1;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  .sendeplan-moderator {
    order: 2;
    text-align: center;
    margin-right: 10px;
  }
  .sendeplan-link {
    order: 3;
    text-align: center;
  }
  .sendeplan-link a {
    display: inline-block;
  }
}