.sidebar-header {
    padding: 10px 14px;
    height: 96px;
    background: var(--testit-green-web);
    color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;    /* horizontal center */
    justify-content: center;/* vertical center inside 100px */
}

.sidebar-actions {
    display: flex;
    gap: 6px;
    margin-top: 4px;
    justify-content: center;
    width: 100%;            /* optional: let button row span full width */
}

.sidebar-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 6px 10px;
    font-weight: 600;
    color: var(--testit-blue);
    font-size: 12px;
}

.sidebar-subheader span {
    font-size: 12px;
}

.sidebar-count-badge {
    font-size: 8px;
    min-width: 18px;
    height: 12px;
    line-height: 12px;
    padding: 0 4px;
    font-weight: 550;
}

.sidebar-wrapper {
    width: clamp(258px, 18.5vw, 320px);
    min-width: 258px;
    max-width: 320px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100vh;
    border-right: 1px solid var(--testit-gray);
}
