/* =========================
Toolbar
========================= */
@use "../kit-deps" as *;
.toolbar {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: $space-3;
width: 100%;
padding: $space-3;
@include hard_panel($border-color-muted, $border-width-accent);
.toolbar-group {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: $space-2;
min-width: 0;
}
.toolbar-title {
margin: 0;
font-size: $font-size-lg;
font-weight: $font-weight-bold;
line-height: $line-height-base;
text-transform: uppercase;
color: $neutral-900;
}
.toolbar-meta {
display: block;
color: $neutral-500;
font-size: $font-size-sm;
}
}