.instruction-button-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.instruction-button {
    border: 1px solid #ddd;
    padding: .75rem 1.25rem;
    background: 0;
    position: relative;
    transition: 0.25s ease;
    width: 100%;
    cursor: pointer;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    line-height: 21.6px;
    display: flex;
    width: fit-content;
}

.instruction-button_active {
    color: white;
    border-color: rgb(0, 127, 255);
    background-color: rgb(0, 127, 255);
}

.instruction-button:hover {
    color: white;
    border-color: rgb(0, 127, 255);
    background-color: rgb(0, 127, 255);
}

.instruction-content {
    display: none;
    transition: 0.25s ease;
}