﻿.sidebar {
    width: 205px;
    min-width: 205px;
    height: 100vh;
    background: #0A1220;
    border-right: 1px solid #1C2638;
    display: flex;
    flex-direction: column;
}

/*==========================
    LOGO
==========================*/

.sidebar-logo {
    height: 92px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    gap: 14px;
}

.logo-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 1;
}

/*==========================
    MENU
==========================*/

.sidebar-menu {
    display: flex;
    flex-direction: column;
    padding: 26px 10px 0 10px;
    gap: 10px;
}

.menu-item {
    position: relative;
    height: 66px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    color: #D5DCEA;
    text-decoration: none;
    transition: .20s;
}

    .menu-item:hover {
        background: #172233;
        color: white;
    }

    .menu-item.active {
        background: #3D181D;
        color: #FF4E58;
    }

    .menu-item i {
        font-size: 24px;
        width: 26px;
        text-align: center;
    }

    .menu-item span {
        font-size: 17px;
        font-weight: 500;
    }

.badge-alert {
    position: absolute;
    right: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF3045;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

/*==========================
    FOOTER
==========================*/

.sidebar-footer {
    margin-top: auto;
    height: 92px;
    border-top: 1px solid #1C2638;
    display: flex;
    align-items: center;
    padding: 0 18px;
}

.operator-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.operator-info {
    margin-left: 14px;
}

.operator-name {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.operator-status {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #A8B3C4;
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18D96B;
}
