﻿.modal-fixed-height {
    height: 80vh;   /* screen height ka 80% - apni pasand se adjust kar lena */
}
/* Table ko fixed layout force karo */
.modal-table-scroll table.dataTable,
#tableRajnandgaon,
.data-table {
    table-layout: fixed;
    width: 100% !important;
}

/* Har column ki width define karo */
.data-table th:nth-child(1),
.data-table td:nth-child(1) {
    width: 6%;   /* S.no */
}

.data-table th:nth-child(2),
.data-table td:nth-child(2) {
    width: 16%;  /* District */
}

.data-table th:nth-child(3),
.data-table td:nth-child(3) {
    width: 10%;  /* Br_code */
}

.data-table th:nth-child(4),
.data-table td:nth-child(4) {
    width: 32%;  /* Branch Name */
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
    width: 36%;  /* Pacs Name - sabse lamba data yahi hota hai */
}

/* Lamba text ho to apne column ke andar hi wrap ho, doosre column ko squeeze na kare */
.data-table th,
.data-table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
