.purple-text {
    color: #b770f6; /* ljubičasta boja */
}
@media only screen and (min-width: 768px) {
    html.fixed .sidebar-left {
        bottom: 0;
        left: 0;
        padding-bottom: 0px !important;
        position: fixed;
        top: 60px;
    }
}

.status-icon.active {
    color: green; /* Boja za aktivno */
}

.status-icon.inactive {
    color: red; /* Boja za neaktivno */
}




/* Badge za chat u sidebaru */
.chat-badge {
    position: absolute;
    top: 2px;
    left: 24px; /* Za collapsed meni, prilagodi po potrebi */
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 13px;
    background: #d83333;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-weight: bold;
    border: 2px solid #23262d; /* Da ima "outline" na tamnoj pozadini */
    pointer-events: none;
    box-shadow: 0 2px 8px #0002;
    transition: left .2s;
}

/* Za prošireni sidebar */
.sidebar-left:not(.sidebar-left-collapsed) .chat-badge {
    left: 34px;
}

/* Za collapsed sidebar, centriraj */
.sidebar-left.sidebar-left-collapsed .chat-badge {
    left: 34px;
}
