.wfe-festday-table {
  margin: 0 0 48px 0;
  background: #101010;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 32px #000c;
}

.wfe-daybar {
  color: #e0e0e0;
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.07em;
  padding: 24px 0 14px 0;
  border-radius: 2rem 2rem 0 0;
  text-shadow: 0 2px 12px #000c;
  border-bottom: 4px solid #000;
  /* background se setează inline din PHP (style="background:#xxxxxx") */
}

.wfe-table-scroll {
  overflow-x: auto;
  background: #eaeaea;
}

.wfe-table-grid.wfe-grid-sync {
  display: grid;
  grid-template-columns: 110px 1fr;
  width: 100%;
}

.wfe-hour-cell, .wfe-event-cell {
  min-height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  background: #eaeaea;
}

.wfe-hour-cell {
  justify-content: flex-end;
  color: #000;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 0 14px 0 0;
  border-right: 3px solid #000;
}

.wfe-event-cell {
  padding-left: 8px;
}

.wfe-eventbox {
    background: linear-gradient(90deg, #222 60%, #393939 100%);
    border-radius: 1.2rem;
    padding: 8px 18px 7px 18px;
    margin-left: 12px;
    box-shadow: 0 2px 16px #0008;
    min-width: 180px;
    display: inline-block;
    text-align: left;
    border-left: 5px solid #f24241;
    border-bottom: 2px solid #535353;
    animation: fadeInEvent .7s;
}
@keyframes fadeInEvent {
  from { opacity: 0; transform: translateY(24px);}
  to { opacity: 1; transform: translateY(0);}
}

.wfe-ev-time {
    font-size: 1.08rem;
    color: #f24241;
    font-weight: 700;
    margin-bottom: 1px;
    letter-spacing: 0.02em;
}
.wfe-ev-title {
  color: #e0e0e0;
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* Responsive, pentru mobil */
@media (max-width: 800px) {
  .wfe-festday-table { padding: 0; }
  .wfe-daybar { font-size: 1.12rem; padding: 12px 0 9px 0; }
  .wfe-eventbox { min-width: 110px; padding: 7px 7px 6px 9px; }
  .wfe-hour-cell { font-size: .99rem; min-height: 40px; }
  .wfe-table-grid.wfe-grid-sync {
    grid-template-columns: 70px 1fr;
  }
}
