.header-inline {
    display: flex;
    align-items: center; /* Alinha verticalmente */
    justify-content: space-between; /* Espaço entre o título e o botão */
    gap: 1rem; /* Espaçamento entre os itens, opcional */
}

.header-inline h1 {
    margin: 0; /* Remove margens padrão do h1 */
    font-size: 1.5rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

.btn-yellow {
    background-color: #facc15;
    color: #000;
    border-radius: 4px;
}
