.toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.toolbar-button {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .toolbar-button.active {
        padding: 5px 10px;
        cursor: pointer;
        border: 1px solid #ccc;
        background-color: #ff790d;
        color: white;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .toolbar-button:hover {
        background-color: #e0e0e0;
    }

.dropdown {
    position: relative;
    display: inline-block;
}

    .dropdown select {
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .dropdown input[type="color"] {
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }