.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.toolbar-buttons {
    display: flex;
    gap: 10px;
}

.toolbar-table-title {
    font-size: 14px;
    color: #666;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin: 0;
}
.toolbar-table-title a{
    color: inherit;
    text-decoration: none;
}

.toolbar-title {
    font-size: 14px;
    color: #666;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 6px 12px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
} 