.program-window {
  background: linear-gradient(135deg, #ff9994 0%, #1a3fa8 100%);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(26, 63, 168, 0.15);
  max-width: 1100px;
  margin: 40px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 8px;
}

.program-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.program-controls {
  display: flex;
  gap: 6px;
}

.program-controls span {
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.program-body {
  background-color: #f4f7fc;
  border-radius: 12px;
  padding: 24px;
}

.program-subbar {
  width: 140px;
  height: 16px;
  background-color: #e2e9f5;
  border-radius: 4px;
  margin-bottom: 24px;
}

.platform-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Einzelne Kachel */
.platform-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  cursor: pointer;
}

.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(46, 89, 203, 0.12);
  border-color: rgba(46, 89, 203, 0.2);
}

.platform-name {
  font-size: 18px;
  font-weight: 600;
  color: #2b3641;
}

.platform-icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #28a745;
  border-radius: 50%;
}

.platform-icon-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dots-icon {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 3px; 
}

.dots-icon .dot {
  width: 4px;
  height: 4px;
  background-color: #ffffff; 
  border-radius: 50%; 
  display: inline-block;
}

.more-platforms .platform-name {
  color: #777777;
}

@media (max-width: 992px) {
  .platform-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .platform-container { grid-template-columns: 1fr; }
  .program-title { font-size: 22px; }
}