.noDisplay {
  display: none;
}

.noVisibility {
  visibility: hidden;
}

.totalOpacity {
  opacity: 0;
}

.sectionLoading {
  /*display: none;*/
}

@media (max-width: 991px) {
  .col-btn-manage {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 300px) {
  .col-btn-tools {
    flex: 0 0 auto;
    width: 100%;
  }
}

.textarea-input {
  height: 120px;
}

.selectable-block {
  user-select: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
}

.selectable-block:hover {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
  border-radius: 6px;
}

.context-menu {
  position: absolute;
  display: flex;
  gap: 10px;
  background: white;
  border-radius: 50px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: opacity 0.2s ease;
}

.context-menu button {
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

.context-menu.d-none {
  display: none;
}

