/* #chart-container {
  font-family: Arial;
  height: 420px;
  border: 2px dashed #aaa;
  border-radius: 5px;
  overflow: auto;
  text-align: center;
} */
#chart-container
.orgchart { background: white; }

#github-link {
  position: fixed;
  top: 0px;
  right: 10px;
  font-size: 3em;
}
.fontsize-15px{
  font-size: 15px;
}
.fontsize-18px{
  font-size: 18px; 
}
.yellowcalar{
  color: #f7b84b ;
}

.post-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 600px;
  padding: 15px;
}

.post-header {
  display: flex;
  align-items: center;
}

.profile-image {
  border-radius: 50%;
  margin-right: 15px;
}

.post-info {
  flex-grow: 1;
}

.post-author {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.post-time {
  margin: 0;
  color: #65676b;
  font-size: 14px;
}

.post-content {
  margin-top: 15px;
}

.post-content p {
  margin: 0;
  line-height: 1.5;
}

.post-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 10px;
}

.post-actions {
  margin-top: 15px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  color: #65676b;
}

button:hover {
  color: #1877f2;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  height: 300px;
}

.control-group {
  flex: 1;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 10px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Vertical Slider Styles */
.slider-container {
  position: relative;
  width: 40px;
  height: 200px;
  margin-top: 10px;
}

.range {
  -webkit-appearance: none;
  position: absolute;
  height: 100%;
  width: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #4a4a4a;
  outline: none;
  margin: 0;
  z-index: 2;
  writing-mode: bt-lr; /* Vertical orientation */
  -webkit-appearance: slider-vertical;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4caf50;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

.slider-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #4caf50;
  pointer-events: none;
  transition: height 0.1s ease;
}

.value-bubble {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  background: #4caf50;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

.value-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #4caf50;
}

.control-group:hover .value-bubble {
  opacity: 1;
}

label {
  font-size: 0.8em;
  text-align: center;
  color: #4caf50;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-90deg);
  white-space: nowrap;
  position: absolute;
  bottom: 10px;
  left: 30%;
  transform-origin: left center;
  margin-left: -5px;
}

.reset-button, .random-button {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.reset-button:hover, .random-button:hover {
  background: #45a049;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
  .container {
    width: 95vw;
  }
  .controls {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }
  .control-group {
    min-width: 60px;
  }
}
.padding-all{
  padding: 20px;
}


