/* Button */
    .openModalBtn {
      padding: 4px;
	  padding: 1px;
      background: #4d4d4d;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .openModalBtn:hover {
      background: #005ea0;
    }

    /* Modal overlay */
    .modal {
      display: none; 
      position: fixed; 
      z-index: 1000; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto;
      background-color: rgba(0,0,0,0.5); 
    }

    /* Modal content */
    .modal-content {
      background: #fff;
      margin: 10% auto;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    /* Close button */
    .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }
    .close:hover {
      color: black;
    }

    /* .controls-left label,
    .controls-left button {
      display: block;
      margin: 10px 0;
    }

    .quick-add {
      margin-top: 20px;
    }

    .quick-add button {
      margin: 5px 0;
    } */

    .shape-picker {
      display: flex;
      gap: 5px;
      margin-top: 10px;
    }