@font-face {
    font-family: "MyFont";
    src: url("/static/fonts/regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MyFont";
    src: url("/static/fonts/bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "MyFont";
    src: url("/static/fonts/bolder.woff2") format("woff2");
    font-weight: bolder;
    font-style: normal;
}

head, body {
    font-family: "MyFont", sans-serif;
    background-image: url("/static/images/background.png");
    background-color: #000000;
}

label.error {
    color: #be0d0d;
}

/* Header navigation pane toggle icons */
#menu-mini-button i,
#menu-expend-button i {
    font-size: 20px;
}

.topbar-notification-count {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    line-height: 1;
    font-size: 10px;
}

.topbar-notification-row {
    cursor: default;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    height: 96px;
    padding: 14px 20px;
    white-space: normal;
}

.topbar-notification-row + .topbar-notification-row {
    border-top: 1px dashed #e5e7eb;
}

.topbar-notification-link {
    color: inherit;
    text-decoration: none;
    display: block;
    min-width: 0;
}

.topbar-notification-link .text-truncate-2-line {
    display: block;
    line-height: 1.35;
}

.topbar-notification-link:hover {
    text-decoration: none;
}

.topbar-notifications-list {
    max-height: 288px;
    overflow-y: auto;
}

.topbar-notification-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    height: 100%;
}

.topbar-notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
    min-height: 16px;
}

.topbar-notification-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    flex-shrink: 0;
}

.topbar-notification-action-btn {
    border: 0;
    background: transparent;
    padding: 0;
    width: 16px;
    height: 16px;
    color: #9aa4b2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s ease;
}

.topbar-notification-action-btn:hover {
    color: #64748b;
}

.topbar-notification-action-read:hover {
    color: #17c666;
}

.topbar-notification-action-delete:hover {
    color: #ea4d4d;
}

.tooltip.action-icon-tooltip {
    --bs-tooltip-bg: #000000;
    --bs-tooltip-color: #ffffff;
    --bs-tooltip-opacity: 1;
}

html.app-skin-dark .tooltip.action-icon-tooltip {
    --bs-tooltip-bg: #ffffff;
    --bs-tooltip-color: #000000;
}

.card-footer .pagination,
[data-player-search-pagination] .pagination {
    --lake-pagination-text: #526173;
    --lake-pagination-bg: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
    --lake-pagination-border: #d5deea;
    --lake-pagination-hover-text: #243447;
    --lake-pagination-hover-bg: linear-gradient(180deg, #ffffff 0%, #f0f1f4 100%);
    --lake-pagination-hover-border: #8f949d;
    --lake-pagination-hover-shadow: 0 0 0 0.18rem rgba(46, 46, 46, 0.14);
    --lake-pagination-active-text: #ffffff;
    --lake-pagination-active-bg: linear-gradient(180deg, #4b4b4b 0%, #2e2e2e 100%);
    --lake-pagination-active-border: #575757;
    --lake-pagination-active-shadow: 0 10px 22px rgba(46, 46, 46, 0.2);
    --lake-pagination-disabled-text: #9ca8b8;
    --lake-pagination-disabled-bg: #eef2f7;
    --lake-pagination-disabled-border: #dbe3ee;
    gap: 0.22rem;
}

.card-footer .pagination .page-link,
[data-player-search-pagination] .pagination .page-link {
    min-width: 1.85rem;
    height: 1.85rem;
    padding: 0 0.46rem;
    margin-left: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lake-pagination-text);
    background: var(--lake-pagination-bg);
    border-color: var(--lake-pagination-border);
    border-radius: 0.56rem !important;
    font-size: 0.84rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.card-footer .pagination .page-link:hover,
.card-footer .pagination .page-link:focus,
[data-player-search-pagination] .pagination .page-link:hover,
[data-player-search-pagination] .pagination .page-link:focus {
    color: var(--lake-pagination-hover-text);
    background: var(--lake-pagination-hover-bg);
    border-color: var(--lake-pagination-hover-border);
    box-shadow: var(--lake-pagination-hover-shadow);
}

.card-footer .pagination .page-item.active .page-link,
[data-player-search-pagination] .pagination .page-item.active .page-link {
    color: var(--lake-pagination-active-text);
    background: var(--lake-pagination-active-bg);
    border-color: var(--lake-pagination-active-border);
    box-shadow: var(--lake-pagination-active-shadow);
}

.card-footer .pagination .page-item.disabled .page-link,
[data-player-search-pagination] .pagination .page-item.disabled .page-link {
    color: var(--lake-pagination-disabled-text);
    background: var(--lake-pagination-disabled-bg);
    border-color: var(--lake-pagination-disabled-border);
    box-shadow: none;
    opacity: 1;
}

html.app-skin-dark .card-footer .pagination,
html.app-skin-dark [data-player-search-pagination] .pagination {
    --lake-pagination-text: #c9d4e5;
    --lake-pagination-bg: linear-gradient(180deg, #162133 0%, #0f1827 100%);
    --lake-pagination-border: #27344a;
    --lake-pagination-hover-text: #f8fbff;
    --lake-pagination-hover-bg: linear-gradient(180deg, #2b2b30 0%, #1c1c20 100%);
    --lake-pagination-hover-border: #595961;
    --lake-pagination-hover-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.08);
    --lake-pagination-active-text: #ffffff;
    --lake-pagination-active-bg: linear-gradient(180deg, #4f4f55 0%, #2e2e2e 100%);
    --lake-pagination-active-border: #6a6a72;
    --lake-pagination-active-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
    --lake-pagination-disabled-text: #6f7d92;
    --lake-pagination-disabled-bg: #0b1220;
    --lake-pagination-disabled-border: #1d293d;
}

html.app-skin-dark .card-footer .pagination .page-link,
html.app-skin-dark [data-player-search-pagination] .pagination .page-link {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lake-page-loader {
    position: fixed;
    inset: 0;
    z-index: 2050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(2px);
}

.lake-page-loader.d-none {
    display: none !important;
}

.lake-page-loader__panel {
    min-width: 220px;
    max-width: min(340px, calc(100vw - 2rem));
    padding: 1rem 1.25rem;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(20, 31, 45, 0.16);
    color: #526173;
    text-align: center;
}

.lake-page-loader__text {
    margin-top: 0.65rem;
    font-size: 0.86rem;
    line-height: 1.35;
}

body.lake-page-loading {
    cursor: progress;
}

html.app-skin-dark .lake-page-loader {
    background: rgba(10, 16, 26, 0.7);
}

html.app-skin-dark .lake-page-loader__panel {
    border-color: #263348;
    background: #101827;
    color: #c9d4e5;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}
