.pane {
    position: absolute;
    width: 280px;
    height: 200px;
    color: white;
    background-color: rgb(45, 45, 45);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    border-radius: 0.5em;
    overflow: hidden;
  }
  
  .pane.active {
    border: 2px solid #ccc;
  }
  
  .pane-draggable-bar {
    min-height: 22px;
    background: linear-gradient(to bottom, #272727, #181818);
    cursor: move;
    border-radius: 0.5em 0.5em 0 0;
  }
  
  .pane-header {
    background-color: #3a3b3b;
    color: white;
    padding: 5px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .pane-controls span {
    scale: 0.7;
  }
  
  .pane-content {
    padding: 10px;
    flex-grow: 1;
    overflow: auto;
  }
  
  /* Custom Scrollbar Styles */
  .pane-content::-webkit-scrollbar {
    width: 0px;
  }
  
  .close-button, .minimize-button, .maximize-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    margin-left: 5px;
  }
  