.style1 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

/* Columns für Plan heute */

/* Basis – gemeinsam für alle Tage */
.date-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 140px;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  border: 1px solid #1f2937; /* dunkelgraue Border */
}

/* große Zahl + kleine Meta */
.date-col .date-day   { font-size: 56px; line-height: 1; font-weight: 800; }
.date-col .date-meta  { font-size: 12px; letter-spacing: .08em; opacity: .8; text-transform: uppercase; }

/* Heute: silber → gold, dunkler Text */
.date-col--today {
  background: linear-gradient(135deg, #c0c5ce, #ffd36f);
  color: #111;
  -webkit-box-shadow: 0 8px 24px rgba(255, 211, 111, .25);
          box-shadow: 0 8px 24px rgba(255, 211, 111, .25);
  border-color: rgba(255, 211, 111, .45);
}

/* Andere Tage: dunkler Kachel-Look */
.date-col--other {
  background: #0b1220;
  color: #cbd5e1;
}

/* Pill-Label wie im Screenshot */
/* Pill-Label für helle Hintergründe */
.pill {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);
  color: #374151;              /* dunkelgrau (gut auf weiß) */
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.pill2Close {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  background: rgba(54, 142, 236, 0.753);
  color: #f2f2f2;              /* dunkelgrau (gut auf weiß) */
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.pill2 {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  background: rgba(167, 17, 17, 0.548);
  color: #f2f2f2;              /* dunkelgrau (gut auf weiß) */
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.pill:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.22);
}

/* Abstand zwischen mehreren Pills */
.pill + .pill { margin-left: 3px; }