/* Container to align nodes vertically */
.verticalOrgContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  /* Styling for each node */
  .orgNode {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f0f4f8;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 10px 0; /* Spacing between nodes */
    position: relative;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .nodeContent {
    text-align: center;
  }
  
  .nodeTitle {
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }
  
  .nodeSubtitle {
    font-size: 12px;
    color: #555;
  }
  
  /* Add buttons for reportees */
  .addButton {
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    margin: 5px;
    cursor: pointer;
    font-size: 18px;
    display: inline-block;
  }
  
  .addButton:hover {
    background-color: #45a049;
  }
  
  /* Connectors */
  .childrenContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .verticalLine {
    width: 2px;
    height: 20px;
    background-color: #ccc;
    margin: 0 auto;
  }
  