
body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.body-botoes{
    width: 60%;
}

.botaopadrao{
    padding: 1rem;
    border-radius: 20px;
    padding: 32px;
    border-radius: 15px;
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.grupo-botao{
        width: 100%;
}


.code-container {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 15px;
            box-sizing: border-box; /* Garante que padding não aumente o tamanho total */
            margin-top: 20px;
        }

        .code-content {
            background-color: #3d3d3d; /* Cor de fundo dentro do box */
            padding: 15px;
            border-radius: 6px;
            font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            overflow-x: auto; /* Para a barra de rolagem horizontal */
            white-space: nowrap; /* Impede quebras de linha automáticas */
            position: relative;
            padding-right: 40px; /* Espaço para o ícone de copiar */
            padding-top: 30px;            
            
        }

        .code-line {
            display: block;
            color: #00e70c; /* Cor roxa para o texto do script */
        }

        .code-line .tag {
            color: #e700c8; /* Cor mais escura para as tags */
        }

        .code-line .attribute {
            color: #e0b700; /* Cor para atributos */
        }

        .code-line .value {
            color: #7c7c7c; /* Cor para valores de atributos */
        }

        .copy-button {
            position: absolute;
            top: 17px;
            right: 25px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            color: #ffffff;
            transition: color 0.2s ease-in-out;
        }

        .copy-button:hover {
            color: #000;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 5px; /* Ajuste conforme necessário */
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 30px); /* Largura da barra de rolagem cinza */
            height: 8px;
            background-color: #ddd;
            border-radius: 4px;
            overflow: hidden; /* Para esconder o scrollbar nativo se a barra customizada for visível */
            pointer-events: none; /* Garante que não interfere com a seleção de texto */
        }

        .scroll-thumb {
            height: 100%;
            background-color: #888;
            border-radius: 4px;
            width:30%; /* Exemplo de largura. Isso será ajustado via JS. */
            position: absolute;
            left: 0;
            cursor: grab;
        }

        .botoesqueaparecem{
            display: flex;
            justify-content: space-between;
            width: 75%;
            margin-left: 15px;

        }