.header {
    background-color: var(--dci-paint-grey-90);
    height: 80px;
    color: var(--dci-paint-grey-0);
}
.header a {
    text-decoration: none;
}

.header .logo img {
    height: 30px;
}
.header .actions {
    display: flex;
    align-items: center;
    text-align: end;
}
.header button {
    color: var(--dci-paint-grey-40);
}
.header button:hover {
    color: var(--dci-paint-grey-10);
    border-color: var(--dci-paint-grey-10);
}
.main__box, .box {
    border-radius: 16px;
    padding: 20px;
    color: var(--dci-paint-grey-0);
}
.box {
    background-color: var(--dci-background-color-lighter);
    color: var(--dci-font-color-medium);
}
.namespace__name {
    font-size: 16px;
    /*text-transform: uppercase;*/
}
.table {
    margin-bottom: 50px;
}
.table caption {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: start;
}
.table tr:nth-child(even), .table thead, .table .bg-fill {
    background-color: #f5f5f5;
}
.table thead {
    color: var(--dci-font-color-dark);
    font-size: 12px;
    font-weight: bold;
}
.table td {
    padding: 10px 15px;
}
.table.table--pivot {
    border-spacing: 0 10px;
}
.table--pivot--border-top {
    border-top: 1px solid var(--dci-border-color-base);
}
.table--pivot--border-bottom {
    border-bottom: 1px solid var(--dci-border-color-base);
}
.error {
    color: var(--dci-paint-error);
}
