/* Whos Who Page Specific Styles */
    .whoswho-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px;
    }
    
    .page-header {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 2px solid #005aa7;
    }
    
    .page-header h1 {
      color: #003366;
      font-size: 2.2rem;
      margin-bottom: 10px;
    }
    
    .page-header p {
      color: #555;
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
    }

    .table-scroll {
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .personnel-table {
      width: 100%;
      border-collapse: collapse;
      /* margin-bottom: 40px; */
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      background: white;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .personnel-table th {
      background-color: #003366;
      color: white;
      padding: 16px 20px;
      text-align: left;
      font-weight: 600;
    }
    
    .personnel-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .personnel-table tr:last-child td {
      border-bottom: none;
    }
    
    .personnel-table tr:hover {
      background-color: #f5f9ff;
    }
    
    .designation-badge {
      display: inline-block;
      padding: 4px 12px;
      background-color: #e6f0fa;
      color: #005aa7;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .contact-details {
      font-size: 0.95rem;
      line-height: 1.5;
    }
    
    .contact-details strong {
      color: #333;
    }
    
    .contact-email {
      color: #005aa7;
      text-decoration: none;
    }
    
    .contact-email:hover {
      text-decoration: underline;
    }
    
    .contact-phone {
      color: #333;
    }
    
    .hierarchy-section {
      margin-top: 60px;
      padding: 30px;
      background: #f8fafc;
      border-radius: 8px;
      border-left: 4px solid #005aa7;
    }
    
    .hierarchy-section h2 {
      color: #003366;
      margin-bottom: 20px;
      font-size: 1.8rem;
    }
    
    .hierarchy-chart {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
    }
    
    .hierarchy-level {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      width: 100%;
      position: relative;
    }
    
    .hierarchy-node {
      background: white;
      border-radius: 6px;
      padding: 16px 20px;
      margin: 0 10px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: relative;
      min-width: 200px;
      border-left: 4px solid #005aa7;
    }
    
    .hierarchy-node.chief {
      background: #003366;
      color: white;
      font-weight: 600;
      border-left: 4px solid #ffcc00;
      padding: 20px 25px;
    }
    
    .hierarchy-node.additional {
      background: #005aa7;
      color: white;
      font-weight: 500;
    }
    
    .hierarchy-node.joint {
      background: #e6f0fa;
      border-left: 4px solid #005aa7;
    }
    
    .hierarchy-node.deputy {
      background: #f0f5ff;
      border-left: 4px solid #6699cc;
    }
    
    .hierarchy-node.under {
      background: #f8fafc;
      border-left: 4px solid #99b3cc;
    }
    
    /* Connector lines */
    .hierarchy-node::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 15px;
      background: #cbd5e1;
    }
    
    .hierarchy-level:last-child .hierarchy-node::after {
      display: none;
    }
    
    /* Horizontal connectors for multiple nodes */
    .hierarchy-level.multi::before {
      content: '';
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: #cbd5e1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .personnel-table {
        min-width: 650px;
      }
      
      .hierarchy-level {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
      }
      
      .hierarchy-node {
        margin: 8px 0;
        width: 80%;
        max-width: 250px;
      }
      
      .hierarchy-node::after,
      .hierarchy-level.multi::before {
        display: none;
      }
      
      .page-header h1 {
        font-size: 1.8rem;
      }
      
      .main-content-with-sidebar {
        flex-direction: column;
        align-items: stretch;
      }

      .main-content {
        width: 100%;
      }
    }
    
    /* Print styles */
    @media print {
      .personnel-table {
        box-shadow: none;
        border: 1px solid #ddd;
      }
      
      .hierarchy-section {
        border: 1px solid #ddd;
        page-break-inside: avoid;
      }
      
      .sidebar {
        display: none;
      }
    }
    
    /* Main content with sidebar layout */
    .main-content-with-sidebar {
      display: flex;
      gap: var(--space-xl);
      align-items: flex-start;
    }
    
    .main-content {
      flex: 1;
      min-width: 0;
    }