/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *








 */



.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background-color: #3C8DBC !important;
}

.color-palette-container {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 10px;
  width: max-content;
  position: absolute;
  z-index: 10;
}

.tabs {
  display: flex;
  margin-bottom: 6px;
  border-bottom: 1px solid #ccc;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: bold;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-bottom: none;
  color: #555;
}

.tab.active {
  background: #fff;
  color: #000;
  border-bottom: 1px solid #fff;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(9, 22px);
  grid-auto-rows: 22px;
  grid-gap: 4px;
  padding: 6px 0;
}

.color-box {
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.color-box.selected {
  border: 2px solid #000;
}

.position-relative {
  position: relative;
}

.color-text-field {
  padding-left: 34px;
  background-color: #fff !important;
}

.color-preview {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
  margin-left: 5px;
}
