.table-container {
            position: relative;
            margin-top: 20px;
	    height: 400px
        }
        
        
        #table-loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            border-radius: 4px;
        }
        
        .spinner {
            font-size: 40px;
            color: #3498db;
            animation: spin 2s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        
        #geneTable {
            width: 100% !important;
        }
        
       
        a {
            color: #3498db;
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }      

        
        .loading-text {
            margin-left: 15px;
            font-size: 18px;
            color: #333;
        }


