
        .table-container {
            overflow-x: auto;
            width: 100%;
        }
        
        .mcr-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px; /* Minimum width before scrolling kicks in */
        }
        
        .mcr-header-row {
            display: flex;
          /*  background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;*/
            border-radius: 8px 8px 0 0;
        }
        
        .mcr-row {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
            transition: background-color 0.2s;
        }
        
        .mcr-row:hover {
            background-color: #f8f9fa;
        }
        
        .mcr-header, .mcr-label {
            flex: 1;
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .mcr-header {
           
            font-size: 16px;
        }
        
        .mcr-label {
            color: #2c3e50;
            font-size: 15px;
        }
        
        .link_label {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .link_label:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        /* Column width adjustments */
        .mcr-header:nth-child(1),
        .mcr-label:nth-child(1) {
            flex: 0.5;
            min-width: 50px;
        }
        
        .mcr-header:nth-child(2),
        .mcr-label:nth-child(2) {
            flex: 0.8;
            min-width: 80px;
        }
        
        .mcr-header:nth-child(3),
        .mcr-label:nth-child(3) {
            flex: 2;
            min-width: 180px;
        }
        
        .mcr-header:nth-child(4),
        .mcr-label:nth-child(4) {
            flex: 2;
            min-width: 180px;
        }
        
        .mcr-header:nth-child(5),
        .mcr-label:nth-child(5) {
            flex: 1.2;
            min-width: 150px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .mcr-header, .mcr-label {
                padding: 4px 3px;
                font-size: 14px;
            }
            
            .mcr-header {
                font-size: 14px;
            }
            
            .table-container {
                border-radius: 2px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }
            
            .mcr-header-row {
                border-radius: 0;
            }
        }
        
        @media (max-width: 480px) {
            
            .mcr-header, .mcr-label {
                padding: 5px 1px;
                font-size: 13px;
            }
            
            .mcr-header {
                font-size: 13px;
            }
        }
        

    .agency_routes {
      width: 85%;
	  max-height: 500px;	  
      border: 1px solid #ccc;
      border-radius: 2px;
      overflow-y: auto;    /* scroll inside */
      display: block;
      font-family: Arial, sans-serif;
    }
    .agency_routes a {
      display: block;
      padding: 5px;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #eee;
    }
    .agency_routes a:hover {
      background: #007bff;
      color: white;
    }

  .tabs {
    display: flex;
    justify-content: left;
    margin-top: 5px;
    line-height:1em;
  }

  /* Styling for individual tab */
  .tab {
    background-color: #f0f0f0;
    padding: 5px 7px;
    border: 1px solid #ccc;
    border-radius: 0px 0px 0 0;
    cursor: pointer;
    margin-right: 0px;
  }

  /* Styling for active tab */
  .tab.active {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    cursor: default;
  }

  /* Styling for tab content */
  .tab-content {
    display: none;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 0 0 0px 0px;
  }

  /* Display active tab content */
  .tab-content.active {
    display: block;
  }

  .advanced-options {
    display: none;
  }
  .feedbackdiv-options {
    display: none;
  }