/* developer-dashboard.css
   Plain, non-Mix stylesheet — loaded only by resources/views/developer/includes/styles.blade.php.
   Reuses the admin theme's .vironeer-* classes (same base as /admin) and the site's real,
   admin-configurable brand colors from colors.css (--primaryColor etc.) — no separate palette. */

/* The admin theme's .vironeer-sidebar-header has a hardcoded height: 52px, too
   short for a logo + badge on two lines, so the badge gets its own bar below
   it instead — and .vironeer-sidebar-menu's height is adjusted to match so
   nothing overlaps or gets clipped. */
.developer-portal-badge-bar {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thirdColor);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.developer-portal-badge {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.vironeer-sidebar .vironeer-sidebar-menu {
    height: calc(100% - 52px - 24px);
}
