.breadcrumb {
  font-size: 0.95rem;
  width: 100%;
  display: block;
  background-color: black;
  padding: 5px;
  text-align: left;
}

.breadcrumb a {
  font-weight: bold;
  display: inline;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #fff;
  font-weight: bold;
}

/* Estilo para os botões de seleção de player */
    #player-buttons button {
        background-color: #333;
        color: #fff;
        border: 2px solid #555;
        padding: 8px 16px;
        border-radius: 20px;
        cursor: pointer;
        margin: 5px;
        transition: all 0.2s ease-in-out;
    }

    #player-buttons button:hover {
        background-color: #555;
        border-color: #777;
    }

    /* Estilo para o botão ATIVO */
    #player-buttons button.active {
        background-color: #3498db;
        border-color: #3498db;
        color: #fff;
        transform: scale(1.05);
    }

    /* Estilo da área do player */
    #player-area {
        margin-top: 1rem;
        transition: all 0.4s ease-in-out;
        width: 100%;
        max-width: 800px; /* Largura padrão */
    }

    /* Estilo da área do player EXPANDIDA */
    #player-area.expanded {
        max-width: 1200px; /* Largura maior quando expandido */
    }
    
    /* Garante que o iframe dentro do player seja responsivo */
    #player-area iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* Mantém a proporção de vídeo */
        border: none;
    }

    #toggle-size {
  margin: 20px auto;
  display: block;
  background: linear-gradient(135deg, #0077ff, #00cfff);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#toggle-size:hover {
  transform: scale(1.05);
}

.download-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(135deg, #ffa000, #ffca28);
  transform: scale(1.05);
}