body {
  font-family: 'Montserrat', sans-serif;
  background: #f0f0f0;
  margin: 0;
  padding: 20px;
}


#container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 10px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.agenda-header {
  font-weight: bold;
  font-size: 32px;        /* 🔥 AQUÍ el tamaño */
  text-align: center;
  padding: 15px 0;       /* más alto */
  margin-bottom: 20px;
  border-radius: 10px;
  color: #fff;
  letter-spacing: 1px;   /* se ve más pro */
}


.partido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:1px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #fff;
  transition: all 0.2s ease;
  flex-wrap: wrap;
}

.partido:hover {
  background: linear-gradient(90deg, #ff9900, #ffcc33) !important;
  transform: scale(1.02);
}

.partido-left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-wrap: wrap;
}

.partido-left img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.partido-left span {
  font-size: 24px;
}

.partido-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.partido-right span {
  font-weight: bold;
  margin-bottom: 5px;
  min-width: 50px;
}

button {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 5px;
}

/* REPRODUCTOR RESPONSIVO */
iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

#controls {
  padding: 10px;
  text-align: center;
  background: #222;
}

#controls button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #ff9900;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
.opciones-embeds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
  align-items: flex-start; /* Esto alinea los hijos al inicio (izquierda en flex-column) */
}

.opciones-embeds button {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background-color: #4444ff;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: left; /* ¡Esto es clave para que el texto quede alineado a la izquierda! */
}
.opciones-embeds button:hover {
  background-color: #2222cc;
}


