
/* ── Checkbox list (multiselect replacement) ── */
.cb-list-wrap {
    border: 1px solid #e4e6fc;
    border-radius: 6px;
    height: 220px;
    overflow-y: auto;
    background: #fff;
}
.cb-list-wrap.border-danger {
    border-color: #dc3545;
}
.cb-list-group {
    padding: 7px 12px 5px;
    font-size: 13px;
    font-weight: 700;
    color: #343a40;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
}
.cb-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 12px;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    font-weight: normal;
    transition: background .1s;
}
.cb-list-item:last-child {
    border-bottom: none;
}
.cb-list-item:hover {
    background: #f0f4ff;
}
.cb-list-item input[type=checkbox] {
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    width: 15px;
    height: 15px;
}
.cb-list-subgroup {
    padding: 5px 12px 4px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    background: #f4f6f9;
    border-bottom: 1px solid #e4e6fc;
    position: sticky;
    top: 30px;
}
.cb-list-item-indented {
    padding-left: 32px;
}
.cb-list-item span {
    font-size: 13px;
    line-height: 1.4;
}

/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

/*# sourceMappingURL=custom.css.map */

/* ---------------------------------------------------------------------------
   Qo'ng'iroqdagi hisoblagich (AdminNotificationsComposer)

   Ilgari yangi xabar borligini faqat `beep` — kichkina pulsatsiyalanuvchi
   sariq nuqta — bildirardi, soni esa ro'yxatni OCHGANDA ko'rinardi. Endi
   raqam qo'ng'iroqning o'zida, bosmasdan ko'rinadi.

   O'lchov nuqtasi `li.dropdown` EMAS, aynan `.notif-bell`: navbarga nisbatan
   joylashtirilsa, hisoblagich qo'ng'iroqdan uzilib qolardi.
--------------------------------------------------------------------------- */
.main-navbar .notif-bell {
    position: relative;
    /* `inline-flex` — svg atrofidagi satr osti bo'shlig'ini yo'q qiladi,
       ya'ni o'rov ikonaning aniq o'lchamiga teng bo'ladi. Feather `<i>` ni
       20x20 `<svg>` ga almashtiradi. */
    display: inline-flex;
    align-items: center;
}

.main-navbar .notif-bell .notif-count {
    position: absolute;
    /* Qo'ng'iroq ostiga, biroz ustma-ust tushib — "yopishib" turishi uchun. */
    top: 100%;
    left: 50%;
    transform: translate(-50%, -5px);
    z-index: 2;

    min-width: 17px;
    padding: 1px 4px;
    border-radius: 9px;
    /* Oq hoshiya: navbarning to'q ko'k fonidan ajralib tursin. */
    border: 1px solid #fff;
    background: #dc3545;

    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 13px;
    text-align: center;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------------
   Bildirishnoma ro'yxatining ikkita shablon nuqsoni

   1. `.time` da `float: left` — suzuvchi element ota-elementning balandligiga
      QO'SHILMAYDI. Shu sababli har bir yozuvning `dropdown-item-desc` i
      vaqtdan xabarsiz qolib, kerakdan past bo'lardi va ro'yxatdagi OXIRGI
      yozuvning vaqti konteynerdan tashqariga chiqib kesilib ketardi
      (shablonda bitta xabar bo'lgani uchun bu sezilmagan).

   2. `.dropdown-list-content` da `height: 250px; overflow: hidden` — qat'iy
      balandlik va scroll YO'Q. Shablonda uchta namunaviy xabar bor edi,
      bizda esa 10 tagacha bo'lishi mumkin (har bir manbadan 5 tadan) —
      qolgani umuman ko'rinmay qolardi.
--------------------------------------------------------------------------- */
.dropdown-list .dropdown-item-desc .time {
    float: none;
}

.dropdown-list .dropdown-list-content {
    height: auto;
    max-height: 320px;
    overflow-y: auto;
}
