:host {
    display: block;
    width: 100%;
}

.taskbar {
    display: flex;
    padding: 8px;
    border-radius: 4px 4px 0 0;
}

.taskbar-group {
    display: flex;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ddd;
}

.taskbar-group:last-child {
    border-right: none;
}


.preview-btn {
    font-family: Roboto;
    font-size: 14px;
    background: none;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color--secondary, #383c45);
    transition: 0.3s all ease-in-out;
    width: 110px;
    justify-content: center;
}


.preview-btn:hover {
    background-color: #f5f5f5;
}