/* Стили для экспорта Расписания стрима */
.export-template-stream {
  justify-content: space-between;
  align-items: center;
  flex: 1;
  display: flex;
  background: radial-gradient(circle at 50% 50%, #1a1a24 0%, #0b0c10 100%);
  font-family: 'Actay', sans-serif; 
}

.ex-stream-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  margin: 0px auto;
  z-index: 10;
  flex: 1;
  justify-content: center;
}

.ex-stream-date-header {
  font-family: 'Actay', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: hsl(180, 47%, 65%);
  margin-top: 10px;
  margin-bottom: -10px;
  padding-left: 10px;
}

.ex-stream-date-header::first-letter{
  text-transform: uppercase;
}

.ex-stream-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 150px 50px 1fr;
  width: 100%;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  flex: 1;
  max-height: 125px;
}

.ex-stream-card-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ex-stream-time {
  font-family: 'Bahnschrift';
  font-variation-settings: "wdth" 75;
  font-size: 40px;
  color: #fff;
  letter-spacing: 1px;
}

.ex-stream-round {
  font-family: 'Actay', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.ex-stream-card-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ex-stream-p1, .ex-stream-p2 {
  font-size: 44px;
  letter-spacing: -1px;
  font-family: "Bahnschrift";
  font-variation-settings: "wdth" 75;
  padding-top: 6px;
  flex: 1;
}

.ex-stream-p1 {
  text-align: right;
}

.ex-stream-p2 {
  text-align: left;
}

.ex-stream-vs {
  font-size: 48px;
  font-weight: 900;
  color: hsl(180, 47%, 65%);
  margin: -4px 10px 0px;
  font-family: "Heathergreen";
}

.ex-stream-score {
  font-size: 64px;
  color: #fff;
  margin: -4px 10px 0px;
  font-family: "Heathergreen";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.ex-stream-format {
  font-size: 32px;
  height: 100%;
  text-align: center;
  font-family: "Bahnschrift";
  font-variation-settings: "wdth" 75;
  color: #fff;
  justify-self: center;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
}

/* Compact 1-Col Mode */
.ex-stream-card.compact-1col {
  padding: 10px 20px;
  border-radius: 12px;
  grid-template-columns: 120px 40px 1fr;
}
.ex-stream-card.compact-1col .ex-stream-p1, 
.ex-stream-card.compact-1col .ex-stream-p2 {
  font-size: 36px;
  padding-top: 4px;
}
.ex-stream-card.compact-1col .ex-stream-vs {
  font-size: 36px;
  margin: -6px 8px 0px;
}
.ex-stream-card.compact-1col .ex-stream-score {
  font-size: 48px;
  margin: -6px 8px 0px;
}
.ex-stream-card.compact-1col .ex-stream-format {
  font-size: 24px;
}
.ex-stream-card.compact-1col .ex-stream-time {
  font-size: 24px;
}
.ex-stream-card.compact-1col .ex-stream-round {
  font-size: 14px;
}

/* Compact 2-Col Mode */
.ex-stream-card.compact-2col {
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ex-stream-card.compact-2col .ex-stream-p1, 
.ex-stream-card.compact-2col .ex-stream-p2 {
  font-size: 36px;
  padding-top: 4px;
}
.ex-stream-card.compact-2col .ex-stream-vs {
  font-size: 36px;
  margin: -6px 8px 0px;
}
.ex-stream-card.compact-2col .ex-stream-score {
  font-size: 48px;
  margin: -6px 8px 0px;
}
.ex-stream-card.compact-2col .ex-stream-format {
  font-size: 24px;
  border-right: 0px;
  padding-right: 0px;
}
.ex-stream-card.compact-2col .ex-stream-time {
  font-size: 24px;
}
.ex-stream-card.compact-2col .ex-stream-round {
  font-size: 14px;
}
