/* Widget wrapper som fyller sin grid-cell */
.tiw-widget{
  height: 100%;
  width: 100%;
  background: #0a0c10;
  color: #e6e8ee;
  box-sizing: border-box;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Valfri rubrik */
.tiw-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.tiw-title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Horisontell rad av eventkort, centrerad i ytan */
.tiw-row{
  flex: 1 1 auto;
  min-height: 0;

  display: flex;
  flex-direction: row;
  gap: 14px;

  justify-content: center;
  align-items: center;

  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px; /* lite luft för scrollbar */
}

/* Varje event som kort */
.tiw-card{
  flex: 0 0 auto;
  min-width: 190px;
  max-width: 320px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-top: 5px;
  border-radius: 12px;
  border: 0;
}

/* Dag + tid ovan rubriken */
.tiw-meta{
  font-size: 13px;
  opacity: 0.88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Lila platta för rubriken */
.tiw-pill{
  background: #7c3aed;
  color: #ffffff;
  border-radius: 12px;

  padding: 7px 14px;

  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tiw-card.tiw-past{
  opacity: 0.5;
}