﻿.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.my-reconnect-modal > div {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
}

.components-reconnect-hide > div {
    display: none;
}

.components-reconnect-show > div {
    display: none;
}

.components-reconnect-show > .show {
    display: block;
}

.components-reconnect-failed > div {
    display: none;
}

.components-reconnect-failed > .failed {
    display: block;
}

.components-reconnect-refused > div {
    display: none;
}

.components-reconnect-refused > .refused {
    display: block;
}

.tableWithBoldFirstColumn th:first-child,
.tableWithBoldFirstColumn td:first-child {
    font-weight: bold;
    position: sticky;
    left: 0;
}
.tableWithBoldFirstColumn tr:nth-child(odd) th:first-child,
.tableWithBoldFirstColumn tr:nth-child(odd) td:first-child {
    background-color: #fAfAfA; /* Same as your table's striped color for odd rows */
}

.tableWithBoldFirstColumn tr:nth-child(even) th:first-child,
.tableWithBoldFirstColumn tr:nth-child(even) td:first-child {
    background-color: white; /* Same as your table's striped color for even rows */
}



.tableWithBoldFirstColumnDarkMode th:first-child,
.tableWithBoldFirstColumnDarkMode td:first-child {
    font-weight: bold;
    position: sticky;
    left: 0;
}

.tableWithBoldFirstColumnDarkMode tr:nth-child(odd) th:first-child,
.tableWithBoldFirstColumnDarkMode tr:nth-child(odd) td:first-child {
    background-color: #5f5f66; /* Same as your table's striped color for odd rows */
}

.tableWithBoldFirstColumnDarkMode tr:nth-child(even) th:first-child,
.tableWithBoldFirstColumnDarkMode tr:nth-child(even) td:first-child {
    background-color: #373740; /* Same as your table's striped color for even rows */
}
