.button-wrapper {
    position: absolute;
    top: 0.3em;
    right: 0.3em;
    display: flex;
    gap: 0.5em;
    z-index: 10;
    width: 1.7em;
    height: 1.7em;
    border: #fff 1px solid;
}

.download-button {
    padding: 0rem 0rem;
    border: #1b1f2426 1px solid;
    border-radius: 0.4em;
    background-color: #f6f8fa;
    color: #57606a;
    text-decoration: none;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    width: 1.7rem;
    height: 1.7rem;
}

.download-button:hover {
    background-color: #e3e5e8;
    border-color: #888;
}

.highlight-python button.copybtn {
    position: absolute;
    display: flex;
    top: .3rem;
    right: 2.5rem;
    width: 1.7em;
    height: 1.7em;
	opacity: 0;
    transition: opacity 0.3s, border .3s, background-color .3s;
    user-select: none;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 0.4em;
    border: #1b1f2426 1px solid;
    background-color: #f6f8fa;
    color: #57606a;
}

