.doc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.doc-modal-content {
  background: #fff;
  width: 90%;
  max-width: 1000px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.doc-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
}
/* Single Table	 */
	 .custom-table {
            border-collapse: collapse;
            width: 100%;
        }
        
        .custom-table th {
            background-color: #189ee3;
            color: white;
            text-align: left;
            vertical-align: middle;
            padding: 12px;
            font-weight: bold;
        }
        
        .custom-table td {
            padding: 12px;
            vertical-align: middle;
        }
        
        .custom-table a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }
        
        .custom-table a:hover {
            text-decoration: underline;
        }
        
        .custom-table,
        .custom-table th,
        .custom-table td {
            border: 1px solid #ddd;
        }
        
        @media (max-width: 768px) {
            .custom-table thead {
                display: none;
            }
            .custom-table,
            .custom-table tbody,
            .custom-table tr,
            .custom-table td {
                display: block;
                width: 100%;
            }
            .custom-table tr {
                margin-bottom: 1rem;
                border-bottom: 2px solid #ccc;
            }
            .custom-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
            }
            .custom-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                width: 45%;
                padding-left: 10px;
                font-weight: bold;
                text-align: left;
            }
        }
	/* Nested Custom Table	 */
	.Nescustom-table {
            border-collapse: collapse;
            width: 100%;
        }
        
        .Nescustom-table th {
            background-color: #189ee3;
            color: #fff;
            font-weight: bold;
            padding: 12px;
            vertical-align: middle;
            border: 1px solid #e9ecef;
        }
        
        .Nescustom-table td {
            padding: 12px;
            vertical-align: middle;
            border: 1px solid #ddd;
        }
        
        .nested-table td {
            padding: 1em;
        }
        
        .nested-table {
            width: 100%;
            margin: 0 0 1.5em;
        }
        
        @media (max-width: 768px) {
            .Nescustom-table thead {
                display: none;
            }
            .Nescustom-table,
            .Nescustom-table tbody,
            .Nescustom-table tr,
            .Nescustom-table td {
                display: block;
                width: 100%;
            }
            .Nescustom-table tr {
                margin-bottom: 1rem;
                border-bottom: 2px solid #ccc;
            }
            .Nescustom-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
            }
            .Nescustom-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                width: 45%;
                padding-left: 10px;
                font-weight: bold;
                text-align: left;
            }
            .nested-table td::before {
                display: none;
            }
        }
	
	 /* body {
            font-family: Arial, sans-serif;
            background: #fff;
        } */
        
        .downloadable-files-section table {
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .downloadable-files-section th {
            background-color: #189ee3;
            color: white;
            font-weight: bold;
            border: 1px solid #e9ecef;
            padding: 1em;
            vertical-align: middle;
        }
        
        .downloadable-files-section td {
            border: 1px solid #ddd;
            padding: 1rem;
            vertical-align: top;
        }
        
        .downloadable-files-section h5 {
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .downloadable-files-section a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }
        
        .downloadable-files-section a:hover {
            text-decoration: underline;
        }
        
        .downloadable-files-section .section-title {
            font-weight: bold;
            font-size: 18px;
            text-transform: uppercase;
            text-decoration: underline;
        } 
		
	@media screen and (max-width: 620px) {
		.downloadable-files-section .section-title {
			margin-top: 20px;
		}
	}