* {
    font-family: 'Roboto', 'Helvetica', 'Segoe UI', sans-serif;
}

.header {
    background-color: #5D5C61;
    color: white;
    margin-bottom: 0rem;
    padding: 0.4rem;
    padding-left: 0.7rem;
}
.header a {
    color: white;
}

.header a:hover {
    color: #A8D0E6;
}


.subheader {
    background-color: lightgray;
    color: black;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    padding-top: 8px;
}

.dropdown-menu {
    background-color: #5D5C61;
}

.dropdown-item {
    color: white;
}

#left_col {
    background-color: #A8D0E6;
    padding: 1rem;
}

#left_col_content {
    position: sticky;
    top: 4.5rem;
}

.card {
    background-color: #5D5C61;
}

.im_head_meta_cat {
    margin-bottom: 0rem;
    font-size: 12px;
    font-weight: bold;
    color: white;
}
.im_head_meta_val {
    color: white;
}
.im_head_meta_val a {
    color: #A8D0E6;
}

.bd-lead {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.hidden {
    display: none;
}
.highcharts-legend-item {
    padding: 20px;
}

.arrow {
    transition: transform 0s;
    position: absolute; 
    right: 10px; 
    top: 50%; 
    transform: translateY(-50%); 
}
.arrow.rotate {
    transform: translateY(-50%) rotate(-90deg); 
}

.active {
    background-color: #A8D0E6; 
    font-weight: bold; 
}





.regulatorRow{
    display:flex;
    border-bottom: 1px solid #5D5C61 ;
    margin-bottom: 30px;
}

.spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

.button {
    position: relative;
    padding: 10px 20px;
    margin-right :10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.button.loading .spinner {
    display: block;
}

.button.loading span {
    visibility: hidden;
}

.pairwise {
    border-bottom: 2px solid black;
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* margin: 20px; */
    /* padding: 20px; */
    text-align: justify;
}

#iM_table{
    margin-top: 0px;
}


/* Tabulator Styling */
.tabulator {
    font-size: 14px; 
    overflow: auto; 
}

.tabulator-frozen-left {
    font-weight: bold;
}

.tabulator-header {
    color: black;
}
/* Customize cell font size */
.tabulator .tabulator-cell {
    font-size: 12px;
}
/* Customize header font size */
.tabulator .tabulator-header {
    font-size: 12px;
}


.columns {
    display: flex;
    align-items: start;
    gap: 20px;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}



.regulator-graph-iMvsGene{
    width: 60%;
}
.regulator-graph-r2Sample{
    width: 40%;
}


.activeLink {
    /* font-weight: bold;  */
    /* border-bottom: 2px , ; */
    border-bottom: 3px solid #A8D0E6;

}