.org-chart-wrapper {
  height: 600px;
  position: relative;
  margin: 20px 0;
}

.org-chart {
  height: 100%;
  width: 100%;
  background: #fff;
}

.org-chart .node {
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.org-chart .node:hover {
  transform: scale(1.05);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.org-chart .node .title {
  padding: 5px;
  font-weight: bold;
}

.org-chart .node .profile {
  padding: 5px;
  border-top: 1px solid #eee;
  font-size: 0.9em;
  color: #666;
}

/* Level-specific styling */
.org-chart .node.org-chart-level-1 {
  border-color: #4CAF50;
}

.org-chart .node.org-chart-level-2 {
  border-color: #2196F3;
}

.org-chart .node.org-chart-level-3 {
  border-color: #9C27B0;
}

/* Message styling */
.org-chart-message {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
}

/* Tooltip styling */
.org-chart-tooltip {
  position: absolute;
  display: none;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  max-width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .org-chart-wrapper {
    height: 400px;
  }
  
  .org-chart-tooltip {
    max-width: 200px;
  }
}
