/* /Components/Shared/NotificationBellComponent.razor.rz.scp.css */
.notification-bell[b-sgbn9syfwd] {
    position: relative;
    display: inline-flex;
}

.notification-bell__trigger[b-sgbn9syfwd] {
    position: relative;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 6px;
    background: #f5f8fa;
    color: #3f4254;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.notification-bell__trigger:hover[b-sgbn9syfwd],
.notification-bell__trigger:focus-visible[b-sgbn9syfwd] {
    background: #eef6ff;
    color: #009ef7;
    outline: none;
}

.notification-bell__badge[b-sgbn9syfwd] {
    position: absolute;
    top: 3px;
    right: 4px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #f1416c;
    border: 2px solid #fff;
}

.notification-bell__panel[b-sgbn9syfwd] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(400px, calc(100vw - 24px));
    background: #fff;
    border: 1px solid #eff2f5;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    z-index: 1055;
    overflow: hidden;
}

.notification-bell--right-start .notification-bell__panel[b-sgbn9syfwd] {
    top: 0;
    right: auto;
    left: calc(100% + 12px);
}

.notification-bell__header[b-sgbn9syfwd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 10px;
    color: #181c32;
    font-size: 14px;
    font-weight: 700;
}

.notification-bell__delete[b-sgbn9syfwd] {
    width: auto;
    height: 30px;
    padding: 0 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #f1416c !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.notification-bell__delete:hover[b-sgbn9syfwd],
.notification-bell__delete:focus-visible[b-sgbn9syfwd] {
    background: #fff1f3;
    color: #f1416c;
    outline: none;
}

.notification-bell__list[b-sgbn9syfwd] {
    display: flex;
    flex-direction: column;
    max-height: 177px;
    overflow-y: auto;
}

.notification-bell__empty[b-sgbn9syfwd] {
    padding: 18px;
    color: #7e8299;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.notification-bell__item[b-sgbn9syfwd] {
    border: 0;
    background: #fff;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    text-align: left;
    color: inherit;
}

.notification-bell__item:hover[b-sgbn9syfwd],
.notification-bell__item:focus-visible[b-sgbn9syfwd] {
    background: #f8fbff;
    outline: none;
}

.notification-bell__icon[b-sgbn9syfwd] {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-bell__icon--task[b-sgbn9syfwd] {
    background: #e9f4ff;
    color: #1b84ff;
}

.notification-bell__icon--document[b-sgbn9syfwd] {
    background: #fff4de;
    color: #f6a723;
}

.notification-bell__icon--comment[b-sgbn9syfwd] {
    background: #f5edff;
    color: #a855f7;
}

.notification-bell__icon--permission[b-sgbn9syfwd] {
    background: #eef6ff;
    color: #009ef7;
}

.notification-bell__icon--complaint[b-sgbn9syfwd] {
    background: #fff1f3;
    color: #f1416c;
}

.notification-bell__icon--success[b-sgbn9syfwd] {
    background: #e8fff3;
    color: #50cd89;
}

.notification-bell__content[b-sgbn9syfwd] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-bell__title[b-sgbn9syfwd] {
    color: #181c32;
    font-size: 12px;
    line-height: 1.2;
}

.notification-bell__text[b-sgbn9syfwd] {
    color: #5e6278;
    font-size: 11px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-bell__content--unread .notification-bell__title[b-sgbn9syfwd],
.notification-bell__content--unread .notification-bell__text[b-sgbn9syfwd] {
    color: #181c32;
    font-weight: 700;
}

.notification-bell__content--read .notification-bell__title[b-sgbn9syfwd],
.notification-bell__content--read .notification-bell__text[b-sgbn9syfwd] {
    color: #7e8299;
    font-weight: 600;
}

.notification-bell__time[b-sgbn9syfwd] {
    color: #a1a5b7;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.notification-bell__all[b-sgbn9syfwd] {
    width: 100%;
    border: 0;
    border-top: 1px solid #eff2f5;
    background: #fff;
    color: #009ef7;
    padding: 12px 18px 14px;
    font-size: 11px;
    font-weight: 700;
}

.notification-bell__all:hover[b-sgbn9syfwd],
.notification-bell__all:focus-visible[b-sgbn9syfwd] {
    background: #f8fbff;
    outline: none;
}

@media (max-width: 575.98px) {
    .notification-bell--right-start .notification-bell__panel[b-sgbn9syfwd],
    .notification-bell__panel[b-sgbn9syfwd] {
        position: fixed;
        top: 58px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .notification-bell__item[b-sgbn9syfwd] {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        padding-inline: 14px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-c41ts9rbnu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-c41ts9rbnu] {
    flex: 1;
}

.sidebar[b-c41ts9rbnu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-c41ts9rbnu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-c41ts9rbnu]  a, .top-row[b-c41ts9rbnu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-c41ts9rbnu]  a:hover, .top-row[b-c41ts9rbnu]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-c41ts9rbnu]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-c41ts9rbnu] {
        justify-content: space-between;
    }

    .top-row[b-c41ts9rbnu]  a, .top-row[b-c41ts9rbnu]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-c41ts9rbnu] {
        flex-direction: row;
    }

    .sidebar[b-c41ts9rbnu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-c41ts9rbnu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-c41ts9rbnu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-c41ts9rbnu], article[b-c41ts9rbnu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Chat/ChatPage.razor.rz.scp.css */
.chat-custom[b-g213a8g3p9]  .k-message-box-wrapper {
    padding-inline: 1.25rem;
    padding-block: 1.25rem;
}

.chat-custom[b-g213a8g3p9]  .k-message-box-wrapper span.k-message-box {
    flex-direction: row !important;
    border-radius: 0.75rem !important;
    border-color: var(--kendo-color-border, rgba(0, 0, 0, 0.08)) !important;
    color: #3d3d3d;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.chat-custom[b-g213a8g3p9]  .k-chat {
    max-width: 100% !important;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0 11px;
}

.chat-custom[b-g213a8g3p9]  .k-message-box {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 8px;
}

.chat-custom[b-g213a8g3p9]  .k-message-box textarea {
    flex: 1 !important;
    resize: vertical;
    min-width: 0;
}

.chat-custom[b-g213a8g3p9]  .k-message-box textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

.chat-custom[b-g213a8g3p9]  .k-message-box .k-input-suffix {
    flex-shrink: 0;
    margin-left: 8px;
    margin-right: 8px;
}

.chat-custom[b-g213a8g3p9]  .k-message-box .k-input-separator-horizontal {
    margin: 0;
}

.chat-thread-button.chat-thread-button-selected[b-g213a8g3p9],
.chat-thread-button.chat-thread-button-selected:hover[b-g213a8g3p9],
.chat-thread-button.chat-thread-button-selected:focus[b-g213a8g3p9],
.chat-thread-button.chat-thread-button-selected:focus-visible[b-g213a8g3p9],
.chat-thread-button.chat-thread-button-selected:active[b-g213a8g3p9],
.chat-thread-button.chat-thread-button-selected.active[b-g213a8g3p9] {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.chat-thread-button.chat-thread-button-selected .chat-thread-meta[b-g213a8g3p9] {
    color: rgba(255, 255, 255, 0.85) !important;
}
