.im_head_meta_val {
    text-align: justify;
}

.node {
    border: solid 1px white;
    font: 10px sans-serif;
    line-height: 12px;
    overflow: hidden;
    position: absolute;
    text-align: center;
}
.leaf rect {
    stroke: #fff;
    stroke-width: 1px;
}
.leaf text {
    pointer-events: none;
    text-anchor: middle;
}
.leaf text.bold {
    font-weight: bold;
}
.category-label {
    font-size: 0px;
    font-weight: bold;
    text-anchor: middle;
    fill: rgba(0, 0, 0, 0.6); /* Add transparency to make it less intrusive */
}
.tree-map-container {
    width: 100%;
    height: 500px;
    position: relative;
}
.tooltipTreeMap {
    position: relative;
    text-align: center;
    width: auto;
    height: auto;
    padding: 5px;
    font: 16px sans-serif;
    background: lightsteelblue;
    border: 1px solid #000;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
}


#reg_recall_container{
    min-height:550px;
}
.aligned-list-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Adjust based on your layout */
    margin: 20px;
}
.aligned-list {
    display: table;
    list-style: none;
    padding: 0;
    margin: 0;
}
.aligned-list li {
    display: table-row;
    list-style-position: inside;
}
.aligned-list .bullet {
    display: table-cell;
    padding-right: 10px; /* Adjust as needed */
}
.aligned-list .term {
    display: table-cell;
    padding-right: 10px; /* Adjust as needed */
    white-space: nowrap;
}
.aligned-list .definition {
    display: table-cell;
}

.graphs-div { /* This is the Pair-Wise Analysis graphs are displayed here */
    max-width: 100%; 
    box-sizing: border-box;  
}


.analyzeButtonDiv {
    flex: 1;  
    display:flex;
    justify-content: center; 
    align-items: center; 
}


.regulatorRow-title{
    margin-top :30px;
    margin-bottom :10px;
    text-align: center;
}


.regulatorRowText{
    display:flex;
    border-bottom: 1px solid #5D5C61 ;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align : justify; 
    gap :30px;


}


.regulator-graph-iMvsGene-text{
    width: 60%;

}

.regulator-graph-r2Sample-text{
    width: 40%;

}


/* PPI Network in the Pair-Wise Analysis */
.string-container {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 20px;

}
.string-item {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;
    text-align: center;
    font-size: 18px;
    padding: 20px;
    box-sizing: border-box;
}
.item-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}
.item-3x3 {
    grid-column: span 3;
    grid-row: span 3;
    background-color: #5D5C61;
}
.item-2x2 {
    grid-column: 1 / span 2;
    grid-row: 2 / span 2;
    
}
.desc-1x5{
    grid-column: 1 / span 5;
    grid-row: 4 / span 1;
}