
.ts-sidebar-box {
  width: 100%;
//background: #1f5f9c; //KI original;
  background: #4599d4;
  padding: 15px;
  border-radius: 4px;
}

.ts-sidebar-header {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ts-sidebar-termin {
  background: #ffffff;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
//border-left: 4px solid #2b78c2; //KI original;
//border-left: 4px solid #3e8abf;
}

.ts-sidebar-status {
  width: 14px;
  height: 14px;
  background: #16a000;
  border-radius: 50%;
  margin-right: 10px;
}

.ts-sidebar-text {
  flex: 1;
  font-size: 14px;
}

.ts-sidebar-action {
//background: linear-gradient(#e0b15a, #c8952f); //KI original;
//background: linear-gradient(#6dcc7a, #52995c); // grün;
  background: linear-gradient(#4599d4, #3e8abf); // hellblau;
  border: 1px solid #52995c;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.fa-calendar {
  color: white;
}

.ts-sidebar-action:hover {
//background: linear-gradient(#f0c46d, #d6a13c); //KI original;
//background: linear-gradient(#7ae68a, #5fb36b); //grün;
  background: linear-gradient(#7db8e1, #4599d4); // hellblau;
}