/*
 * This file is part of TREB.
 *
 * TREB is free software: you can redistribute it and/or modify it under the 
 * terms of the GNU General Public License as published by the Free Software 
 * Foundation, either version 3 of the License, or (at your option) any 
 * later version.
 *
 * TREB is distributed in the hope that it will be useful, but WITHOUT ANY 
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 
 * details.
 *
 * You should have received a copy of the GNU General Public License along 
 * with TREB. If not, see <https://www.gnu.org/licenses/>. 
 *
 * Copyright 2022-2026 trebco, llc. 
 * info@treb.app
 * 
 */

.treb-embed-mouse-mask {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: transparent;
  z-index: 1000;
  display: none;
  cursor: nwse-resize;
}

.treb-embed-resize-rect {
  box-sizing: border-box;
  position: absolute;
  /* border: 1px dotted #339966; */
  border: 1px dotted #2e8dd6;
  border-radius: 2px;
  pointer-events: none;
}

.treb-embed-resize-handle {
  box-sizing: border-box;
  position: absolute;
  height: 16px;
  width: 16px;
  min-height: 16px;
  min-width: 16px;
  /* border: 8px solid #339966; */
  border: 8px solid #2e8dd6;

  border-top-color: transparent;
  border-left-color: transparent;
  cursor: nwse-resize;
  bottom: 1px;
  right: 1px;
  z-index: 999;
}
