.telegramfx {
    font-size: 13px;
}

.telegramfx-fluid {
    width: 100%;    
    font-size: 13px;
}

table.telegramfx-table {
    border-collapse: separate;
    border-spacing: 0 3px;
    border: none;
    width: 100%;
}

table.telegramfx-table td, table.telegramfx-table th {    
    border: 0;
    padding: 5px;
}

table.telegramfx-table td:first-child, table.telegramfx-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

table.telegramfx-table td:last-child, table.telegramfx-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

table.telegramfx-table thead tr {
    background-color: rgb(193 212 229);
    color: #5e5e5e;
    font-weight: bold;
    font-size: 15px;
}

table.telegramfx-table tbody tr:nth-child(odd){
    background-color: rgb(243 243 243 / 63%);
}

table.telegramfx-table tbody tr:nth-child(even){
    background-color: rgb(210 223 251 / 65%);;
}

table.telegramfx-table tbody tr *{
    color: #5b5d60;;
    font-weight: 500;
}

table.telegramfx-table a {
    text-decoration: none !important;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.d-flex {
    display: flex !important;
}

.gap-20px {
    column-gap: 20px !important;
}

.gap-10px {
    column-gap: 10px !important;
}

.mt-30px {
    margin-top: 30px !important;
}

.mb-20px {
    margin-bottom: 20px !important;
}

.mb-10px {
    margin-bottom: 10px !important;
}

.col {
    flex: 1;
}

.col-3 {
    flex-basis: 30%;
}

.block {
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    color: black;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.success {
    color: green !important;
}

.danger {
    color: red !important;
}

.telegramfx ul, .telegramfx-fluid ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.text-bold {
    font-weight: bold !important;
}

.stat-row {    
    padding: 10px 0;
    column-gap: 10px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.37);
    font-size: 14px;
}

.scrollable {
    max-height: 80vh;
    overflow: auto;
}

.scrollable thead {
	position: sticky;
	top: 0;
}

.scrollable table {
    display: flex;
    flex-flow: column;
    width: 100%;
}

.scrollable thead {
    flex: 0 0 auto;
}

.scrollable tbody {
    flex: 1 1 auto;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.scrollable tr {
    width: 100%;
    display: table;
    table-layout: fixed;
}

.prev-link, .next-link {
    font-size: 24px;
}

.prev-link {
    margin-right: 5px;
}

.next-link {
    margin-left: 5px;
}