/* =========================================================
   NETDEVOPS COMMON SIDEBAR
   ========================================================= */

.suite-sidebar {

    width: 240px;

    flex-shrink: 0;

    min-height: 100vh;

    background: #111827;

    color: white;

    padding: 20px 12px;

    box-shadow:
        2px 0 8px
        rgba(0, 0, 0, 0.08);
}


/* Header */

.suite-head {

    font-size: 20px;

    font-weight: 700;

    padding: 12px 14px 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.12);

    margin-bottom: 12px;
}


/* Menu item */

.suite-item {

    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    padding: 11px 14px;

    margin-bottom: 3px;

    color: #d1d5db;

    text-decoration: none;

    border-radius: 7px;

    font-size: 14px;

    transition:
        background 0.15s ease,
        color 0.15s ease;
}


.suite-item:hover {

    background: #1f2937;

    color: white;
}


/* Active item */

.suite-item.active {

    background: #1f4b99;

    color: white;
}


/* Dot */

.suite-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #60a5fa;

    flex-shrink: 0;
}


/* Separator */

.suite-sep {

    height: 1px;

    background:
        rgba(255,255,255,0.12);

    margin: 12px 8px;
}