/* Contenedor principal */

main{
    min-height: calc(100vh - 305px);

}

.page-header-dd{
      background-color: #162a32f5;
    color: #ffffff;
    /* padding: 5px 0; */
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    max-width: 100%;

    margin: 0 auto;
    padding: 10px;
    margin-bottom: 10px;
}
.directdown-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  color: #fff;

}

.mp3-btn-guest {
    margin: 10px;
  padding: 10px 20px;
  background: linear-gradient(to right, #00ff99, #00ccff);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mp3-btn-guest:hover {
    background: linear-gradient(to right, #00ccff, #00ff99);

}

/* Título */
.directdown-container h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
}

/* Formulario */
.directdown-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.directdown-form input[type="text"] {
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  background-color: #2c2c2c;
  color: #fff;
}

.directdown-form input[type="submit"] {
margin: 10px;
    padding: 10px 20px;
    background: linear-gradient(to right, #00ff99, #00ccff);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s 
ease;
}

.directdown-form input[type="submit"]:hover {
  background: linear-gradient(to right, #00ccff, #00ff99);
  color:black;
}

/* Mensajes */
.directdown-message {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}

.directdown-message.error {
  background-color: #b71c1c;
  color: #fff;
}

.directdown-message.success {
  background-color: #2e7d32;
  color: #fff;
}

/* Vista previa del video */
.video-preview {
  margin-top: 30px;
  text-align: center;
}

.video-preview h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.video-preview img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Botones de acción */
.acciones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.acciones button {
  padding: 10px 15px;
  font-size: 0.95em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #333;
  color: #fff;
  transition: background-color 0.3s;
}

.acciones button:hover {
  background-color: #555;
}

.vote-btn.voted {
  background-color: #00cc99;
}

.btn-playlist {
background-color: #2a2a2a;
    color: #f0f0f0;
    border: 1px solid #444;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-compartir {
  background-color: #9c27b0;
}
