.toolbar {
    background-color: #eaeaea; /* Light grey background */
    font-size: 8pt; /* Font size of 12pt */
    display: inline-flex; /* Display as inline-flex for minimal height and width */
    align-items: center; /* Center items vertically */
    gap: 6px; /* Space between buttons */
    padding: 2px 4px; /* Small padding for spacing */
    border: 1px solid #ccc; /* Light border for visibility */
    border-radius: 4px; /* Rounded corners for aesthetics */
    margin-left: 0px;
    margin-bottom: 4px;
}

.toolbar-button {
    background-color: rgb(231, 231, 231); /* White background for buttons */
    border: 0px solid #ccc; /* Light border */
    border-radius: 3px; /* Slightly rounded corners */
    padding: 0px 1px; /* Small padding */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: inherit; /* Inherit font size from toolbar */
}

    .toolbar-button:hover {
        background-color: dodgerblue; /* Slight hover effect */
        color: white;
    }


.code-toolbar {
    background-color: #eaeaea; /* Light grey background */
    font-size: 8pt; /* Font size of 12pt */
    /*display: inline-flex; Display as inline-flex for minimal height and width */
    align-items: center; /* Center items vertically */
    gap: 6px; /* Space between buttons */
    padding: 2px 4px; /* Small padding for spacing */
    border: 1px solid #ccc; /* Light border for visibility */
    border-radius: 4px; /* Rounded corners for aesthetics */
    margin-left: 0px;
    margin-bottom: 4px;
}

.code-toolbar-button {
    background-color: rgb(231, 231, 231); /* White background for buttons */
    border: 0px solid #ccc; /* Light border */
    border-radius: 3px; /* Slightly rounded corners */
    padding: 0px 1px; /* Small padding */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: inherit; /* Inherit font size from toolbar */
}

    .code-toolbar-button:hover {
        background-color: dodgerblue; /* Slight hover effect */
        color: white;
    }


@media (max-width: 768px) {
    .toolbar {
        font-size: 14px;
    }
}