/* --- Petite Vue Styles --- */


  .v-toolbox {
    position: absolute;
    top: 80px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .v-tool-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .v-tool-btn.active {
    background: rgba(50, 50, 50, 0.8);
    color: white;
    border:none;
  }
  
  .v-info-popup {
    position: absolute;
    top: 100px;
    right: 40px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    padding: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    z-index: 10000;
  }
  
  .v-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .v-info-popup input {
    width: 100%;
    margin: 4px 0 10px;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  .toShow{
    color: yellow;
  }
  
  .cut-cursor {
    cursor: url('/css/images/scissors.svg'), auto;
  }
