<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Disable scrollbar overflow */
/* Chrome, Safari, Edge, Opera */
.acw-wizard input::-webkit-outer-spin-button,
.acw-wizard input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.acw-wizard input[type=number] {
  -moz-appearance: textfield;
}

/***** Track Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
.acw-wizard input[type=range] {
  /*removes default webkit styles*/
  -webkit-appearance: none;
  
  /*fix for FF unable to apply focus style bug */


  /*required for proper track sizing in FF*/
  width: 100%;
  background: transparent;
}
.acw-wizard input[type=range]:disabled {
  /* Disabled Element */
}
.acw-wizard input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background-color: #565656;
  border: none;
  border-radius: 3px;
  outline: none !important;
}
.acw-wizard input[type=range]:disabled::-webkit-slider-runnable-track {
  /* Disabled slider-runnable-track */
  background: #3e912d99;
}
.acw-wizard input[type=range]::-webkit-slider-thumb { /* knob */
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #272727;
  margin-top: -5px;
}
.acw-wizard input[type=range]:disabled::-webkit-slider-thumb {
  /* Disabled slider-thumb */
  background: #27272799;
}
.acw-wizard input[type=range]:focus {
  outline: none;
}
.acw-wizard input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  background: #3e912d;
  border: none;
  border-radius: 3px;
}
.acw-wizard input[type=range]:disabled::-moz-range-track {
  /* Disabled slider-range-track */
  background: #3e912d99;
}
.acw-wizard input[type=range]::-moz-range-thumb { /* knob */
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #272727;
}
.acw-wizard input[type=range]:disabled::-moz-range-thumb {
  /* Disabled slider-thumb */
  background: #27272799;
}

/*hide the outline behind the border*/
.acw-wizard input[type=range]:-moz-focusring{
  outline: 1px solid white;
  outline-offset: -1px;
}

.acw-wizard input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;

  /*remove default tick marks*/
  color: transparent;
}
.acw-wizard input[type=range]::-ms-track {
  /* Disabled slider-range-track */
  background: #3e912d99;
}
.acw-wizard input[type=range]::-ms-fill-lower {
  background: #373737;
  border-radius: 10px;
}
.acw-wizard input[type=range]::-ms-fill-upper {
  background: #575757;
  border-radius: 10px;
}
.acw-wizard input[type=range]::-ms-thumb { /* knob */
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #272727;
}
.acw-wizard input[type=range]:disabled::-ms-thumb {
  /* Disabled slider-thumb */
  background: #27272799;
}
.acw-wizard input[type=range]:focus::-ms-fill-lower {
  background: #373737;
}
.acw-wizard input[type=range]:focus::-ms-fill-upper {
  background: #575757;
}

.hidden {
  display: none !important;
}

/***** Rest of styling *****/

/* Main wizard container - larger margins, padding, rounded corners, shadow, max width */
.acw-wizard, 
.acw-config-list {
  font-family: 'Arial', sans-serif;
  margin: 50px auto; /* Increased margin, centered */
}

/* Wizard title - larger font, margin, darker color, bigger icon */
.acw-wizard h2, 
.acw-config-list h2 {
  font-size: 36px; /* Even larger title font */
  margin-bottom: 40px; /* Even larger bottom margin */
  display: flex;
  align-items: center;
  color: #222; /* Even darker title text */
  text-shadow: 1px 1px 1px rgba(0,0,0,0.05); /* Subtle text shadow */
}

/* Edit icon next to title - bigger, more rounded, opaque */
.acw-wizard h2 span, 
.acw-config-list h2 span {
  content: "";
  display: inline-block;
  width: 40px; /* Even bigger edit icon */
  height: 40px; /* Even bigger edit icon */
  background: #9b2b6a;
  margin-right: 20px; /* Increased right margin */
  border-radius: 10px; /* Even more rounded corners */
  opacity: 0.95; /* Almost fully opaque icon */
  box-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Add subtle shadow to icon */
  line-height: 40px; /* Center the symbol */
  color: white;
}

/* "Name your Configuration" row - larger margins, relative positioning */
#config-name-group,
#config-id-display {
  display: inline-flex;
  align-items: center;
  margin-bottom: 35px; /* Even larger bottom margin */
  position: relative; /* For positioning checkmark */

  margin-top: 30px; /* Increased top margin */
}

/* Label for config name - bold, larger font, darker color, wider margin */
#config-name-group label,
#config-id-display label {
  font-weight: bold;
  margin-right: 30px; /* Even larger right margin */
  font-size: 24px; /* Even larger label font */
  color: #272727; /* Even darker label text */
  text-shadow: 1px 1px 1px rgba(0,0,0,0.05); /* Subtle text shadow on label */
}

#config-name-group p,
#config-id-display p {
  font-weight: bold;
  color: #272727;
  font-style: italic;
  display: inline;
  font-size: 24px;
}

/* Input field for config name - bigger padding, width, rounded corners, border, font, shadow */
#config_name {
  padding: 16px 20px; /* Even bigger input padding */
  max-width: 600px; /* Even wider input field */
  border-radius: 10px; /* Even more rounded input corners */
  border: 2px solid #a0a0a0; /* Even more prominent border */
  font-size: 22px; /* Even larger input font */
  box-shadow: inset 3px 3px 7px rgba(0,0,0,0.15); /* More pronounced inner shadow */
  color: #272727; /* Even darker input text */
}

/* Checkmark icon - larger, brighter green, repositioned */
#config-name-group::after {
  content: "âœ“";
  font-size: 36px; /* Even larger checkmark */
  color: #00c000; /* Even brighter green checkmark */
  position: absolute;
  right: 25px; /* Adjust position as needed */
  top: 50%;
  transform: translateY(-50%);
  display: none; /* Hidden by default */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle text shadow to checkmark */
}

/* Show checkmark when config name input has text */
#config-name-group.has-text::after {
  display: block; /* Show when .has-text class is added */
}

@media (max-width: 570px) {
  #config-name-group,
  #config-id-display {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 20px; /* Slightly reduce bottom margin for smaller screens */
      margin-top: 20px; /* Slightly reduce top margin for smaller screens */
  }

  #config-name-group label,
  #config-id-display label {
      margin-right: 0; /* Remove the right margin used in horizontal layout */
      margin-bottom: 8px; /* Add some vertical spacing between label and input */
      font-size: 20px; /* Slightly smaller font for smaller screens */
  }

  #config-name-group p,
  #config-id-display p {
    display: inline;
    font-size: 20px;
  }

  #config_name {
      width: calc(100% - 16px*2); /* Make the input take full width on small screens */
      font-size: 18px; /* Slightly smaller font for smaller screens */
      padding: 12px 16px; /* Slightly smaller padding */
  }

  /* Optional: Adjust the checkmark if needed */
  #config-name-group::after {
      display: none !important;
  }
}

/* "Choose your PROTOTYPES" heading - larger font, margins, thicker brighter green border, padding, darker text, uppercase, letter spacing */
#choose-prototypes-section h3 {
  font-size: 26px; /* Even larger heading font */
  margin-bottom: 30px; /* Even larger bottom margin */
  margin-top: 40px; /* Even larger top margin */
  border-bottom: 2px solid #4aba45; /* Thicker, brighter green border */
  padding-bottom: 15px; /* Increased padding below border */
  color: #272727; /* Even darker heading text */
  text-transform: uppercase; /* Uppercase heading text */
  letter-spacing: 2px; /* More letter spacing */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle text shadow on heading */
}

/* Container for prototypes - centered content, larger gap, margins, padding */
.acw-prototypes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center prototypes */
  gap: 30px; /* Increased gap */
  margin-bottom: 35px; /* Even larger bottom margin */
}

.acw-prototypes div {
  width: 130px; /* Same as label width */
}

/* Each prototype block (label) - wider, taller, brighter green, more rounded, white text, padding, stronger shadow, smooth hover */
.acw-prototypes label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 130px;
  height: 130px;
  background-color: #9ec896;
  border-radius: 10px; /* Even more rounded corners */
  color: #f0f0f0; /* Lighter text color */
  position: relative;
  cursor: pointer;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3); /* Stronger shadow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.acw-prototypes label:hover {
  transform: scale(1.1); /* Scale up more on hover */
  box-shadow: 6px 6px 18px rgba(0,0,0,0.4); /* Enhanced shadow on hover */
}

.acw-prototypes label:has(input:checked) {
  background-color: #3e912d; /* Even brighter green */
}

#cascaded-prototype-info {
  display:none; 
  text-align:center; 
  margin-bottom: 10px; 
  color: grey;
}

/* Hide default checkboxes */
.acw-prototypes input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* SVG icons in prototype blocks - even bigger icons */
.acw-prototypes label img {
  object-fit: contain;
  margin-bottom: 0;
  padding: 20px;
}

/* White circle for checked state - larger, thicker border, light grey background, shadow */
.acw-prototypes label::after {
  content: '';
  position: absolute;
  bottom: 10px; /* Adjust bottom position */
  right: 10px; /* Adjust right position */
  width: 28px; /* Even larger circle */
  height: 28px; /* Even larger circle */
  border: 2px solid #272727; /* Black border */
  border-radius: 50%;
  background-color: #f8f8f8; /* Light grey circle background */
  opacity: 1;
}

/* Prototype name and info icon container in prototype selection */
.acw-prototypes .prototype-name-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  margin-top: 16px; /* More margin above text */
}

/* Prototype text below icon - larger font, wider text area, more margin, bold, lighter color */
.acw-prototypes .prototype-name-container span:first-child {
  flex: 1 0 78%;
  font-size: 17px; /* Even larger text */
  text-align: left;
  line-height: 1.1;
  font-weight: bold;
  color: #272727; /* Even lighter text color */
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1); /* Subtle text shadow on prototype names */
  border-right: 2px #272727 solid; /* Light grey border on the right side */
}

.acw-prototypes .prototype-name-container .info-icon {
  flex: 0 0 22%;
  line-height: 0.5em;
}

/* Checkmark in white circle - larger, brighter green, shadow */
.acw-prototypes input[type="checkbox"]:checked + img + span::before {
  content: "âœ“";
  font-size: 60px; /* Even larger checkmark */
  position: absolute;
  right: 10px; /* Match circle position */
  bottom: 10px; /* Match circle position */
  color: #272727; /* Brighter green checkmark */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; /* Match circle size */
  height: 28px; /* Match circle size */
  opacity: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Add text shadow to checkmark */
}

/* Save sections note and button - larger margins, font, brighter magenta, bold, shadow, hover effect */
.save-section,
.acw-wizard &gt; p {
  margin: 40px 0 50px 0; /* Increased margins */
  text-align: center;
  font-size: 22px; /* Larger font for note */
  color: #9b2b6a; /* Even brighter magenta */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.save-btn {
  padding: 14px 40px; /* Larger button padding */
  width: 93%;
  background-color: #9b2b6a; /* Even brighter magenta button */
  color: #fff;
  border: none;
  border-radius: 6px; /* More rounded button */
  cursor: pointer;
  font-weight: bold;
  font-size: 22px; /* Larger button font */
  box-shadow: 4px 4px 10px rgba(0,0,0,0.3); /* Stronger button shadow */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.save-btn:hover {
  background-color: #c20971; /* Even brighter magenta on hover */
  transform: scale(1.05); /* Scale up more on hover */
}

/* Carousel container - larger top margin */
#prototype-carousel {
  margin-top: 40px; /* Increased top margin */
  display: none;
}

/* Carousel header style */
.acw-carousel-header,
.acw-config-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  border-top: 2px solid #6ead62; 
  margin-bottom: 10px;  
  padding: 10px 0;
}

/* Prototype info container */
.acw-prototype-info,
.acw-config-info {
    display: flex;
    align-items: center;
}

/* Prototype icon style - final adjustments for size and alignment */
.acw-prototype-icon {
    width: 65px; /* Larger icon */
    height: 65px; /* Larger icon */
    margin-right: 10px;
    object-fit: contain;
    opacity: 0.8;
    vertical-align: top;
    margin-top: 5px;
    background-color: #3e912d; /* Green background */
    border-radius: 5px; /* Rounded corners */
    padding: 5px;
}

/* Prototype text container */
.acw-prototype-text,
.acw-config-text {
    flex-grow: 1;
}

/* Prototype name style - larger font size and darker color */
.acw-prototype-name,
.acw-config-name {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 1.2em; /* Larger font size */
    color: #272727; /* Darker color */
    font-weight: bold;
}

/* Prototype description style - larger font size and line height */
.acw-prototype-description,
.acw-config-id {
    margin-top: 5px;
    margin-bottom: 0;
    color: #272727; /* Darker color */
    font-size: 0.9em; /* Larger font size */
    line-height: 1.4;
}

.acw-config-id {
    font-style: italic;
    font-size: small;
}

.acw-config-id span {
    color: #666;
    font-size: small;
    cursor: pointer;
    line-height: 2.4;
}

/* Edit icon container - adjust margin */
.acw-edit-icon-container,
.acw-icon-container {
    align-self: flex-start;
    margin-top: 0px; /* Adjust margin */
}

/* Edit classification button style - adjust padding and background */
.acw-edit-icon-container &gt; div,
.acw-icon-container &gt; div &gt; div {
    padding: 5px 5px; /* Adjust padding */
    border-radius: 6px; /* more rounded corners */
    cursor: pointer;
    font-size: 0.7em; /* Slightly larger font size */  
    background-color: #9b2b6a;
    color: white;
    font-weight: normal;
    line-height: 1;
    display: inline-block; 
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.acw-edit-icon-container &gt; div:hover,
.acw-icon-container &gt; div &gt; div:hover {
    background-color: #c20971; /* Lighter grey on hover */
}

/* Classification section styles */
.classification-section {  
  display: none;
  padding-left: 76px;
}

/* Classification title above panels */
.classification-title {
  font-size: 20px;
  font-weight: bold;
  color: #6ead62;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.classification-item {
    display: inline-flex;
    align-items: center;
    padding: 8px;
}

.classification-item:last-child {
    border-bottom: none;
}

.classification-item span:first-child {
    margin-right: 10px;
    font-size: 0.9em;
    color: #444;
}

/* Vertical separator */
.classification-item &gt; span:nth-child(3) {
  margin-left: 10px;
  margin-right: 5px;
  padding-right: 10px;
  border-right: 2px solid #ccc;
  height: 20px;
}

.classification-item:last-of-type &gt; span:nth-child(3) {
  border-right: 0;
}

/* Highlight active classification */
.classification-item.active {
  background-color: #f0f8ff;
  border-radius: 6px;
}

/* Toggle switch styles */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px; /* Smaller width */
  height: 20px; /* Smaller height */
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c494af;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 10px; /* Match height for round ends */
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px; /* Smaller knob */
  width: 16px; /* Smaller knob */
  left: 2px; /* Knob position */
  bottom: 2px; /* Knob position */
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #9b2b6a;
}

input:focus + .slider {
  box-shadow: 0 0 1px #9b2b6a;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px); /* Move knob */
  -ms-transform: translateX(20px); /* Move knob */
  transform: translateX(20px); /* Move knob */
}

/* Cog icon styles */
.dashicons-admin-generic {
    color: #9b2b6a;
    margin-left: 5px;
    cursor: pointer;
}

.dashicons-admin-generic.disabled {
    color: #c494af;
    cursor: not-allowed;
}

/* Parameter Panels Footer Styles */
.parameter-panels-footer {
  margin: 0 0 30px 0;
}

/* Two-column layout container */
.panels-layout {
  display: none;
  width: 100%;
  transition: all 0.3s ease;
  padding: 20px; /* Add padding around the panel layout */
  box-sizing: border-box; /* Include padding in width calculation */
}

.panels-layout.active {
  display: block;
}

.panels-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 400px;
}

/* Left column - Rules (50%) */
.left-column {
  flex: 0 0 calc(50% - 10px);;
}

/* Right column - Severity (50%) */
.right-column {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  gap: 20px;
}

@media (max-width: 570px) {
  .left-column, .right-column {
    flex: 0 0 100%;
  }
}

/* Wide column - Draw Area (100%) */
.wide-column {
  flex: 0 0 100%;
  display: flex;
  gap: 20px;
}

/* Ensure panels in right column have equal height */
.right-column .parameter-panel {
  flex: 1;
}

/* Individual panel styling */
.parameter-panel {
  background-color: #6ead62;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #272727; /* Dark text color for panels */
  border: 1px solid #ddd; /* Add a light border */
}

/* Panel header styling */
.panel-header {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: white;
  border-bottom: 2px solid #6ead62;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #6ead62; /* Keep header green */
  padding: 10px 15px; /* Reduced header padding */
}

/* Panel content styling */
.panel-content {
  padding: 15px;
  color: #272727;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 85%;
}

.panel-content p {
  color: white;
  margin: 0;
  font-size: 105%;
}

.panel-content &gt; div &gt; div {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px 0;
  justify-content: space-between;
}

.panel-content &gt; div &gt; div &gt; p:has(+ span) {
  width: calc(100% - 25px);
}

.panel-content &gt; div &gt; div &gt; span {
  flex-basis: fit-content;
  margin-top: auto;
}

.input-with-slider &gt; label {
  text-align: right;
  flex-grow: 1;
  margin-right: 5px;
}

.input-with-slider &gt; input {
  margin-left: auto;
  text-align: end;
  width: 55px;
  padding: 5px;
  border-radius: 6px;
  border: 2px solid #a0a0a0;
  font-size: 14px;
  box-shadow: inset 3px 3px 7px rgba(0,0,0,0.15);
  color: #272727;
}

.slider-input {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.slider-input input[type="range"] {
    flex-basis: 100%;
    margin-bottom: 0;
}

.slider-input label {
    margin: 0; /* Reset label margins */
}

.slider-input label:first {
  flex-grow: 3;
}

.slider-input label.spacer {
  flex-grow: 6;
  text-align: center;
}

.slider-input label:last {
  flex-grow: 3;
  text-align: right;
}

/* Radio list styles */
.radio-list {
  display: block !important;
}

.radio-list &gt; .radio-item {
  display: flex;
  align-items: center; /* vertically center the items */
  justify-content: space-between; /* push label to left and icon to right */

  line-height: 4dvh;
}

.radio-list &gt; .radio-item &gt; .info-icon {
  margin-right: 10px; /* add some spacing between the border and icon */
  margin-left: 10px; /* add some spacing between the text and icon */
}

/* Info icon tooltip */
.info-icon {
  color: #9b2b6a;
  font-size: 32px !important;
  margin-left: 5px;
  cursor: help;
}

.info-icon:hover {
  color: #6ead62;
}

.radio-list .info-icon {
  line-height: 0.4em;
}

.parameter-panel .info-icon:hover {
  color: white;
}

/* Modal Styles */
.acw-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.acw-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation: fadeIn 0.3s;
    display: flex; /* Enable flexbox for content alignment */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text within content */
}

.acw-modal-content:has(img) {
  width: 70%;
}

.acw-modal-content:not(:has(img)) {
  max-width: 500px;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.acw-modal .columns {
  display: flex;
  gap: 20px;
  list-style-position: inside;
}

.acw-modal .col0 {
  flex: 1;
}

.acw-modal .col1,
.acw-modal .col2 {
  flex: 1;
  text-align: left;
  align-content: center;
}

.acw-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    position: relative; /* Position relative for close button */
    width: 100%; /* Ensure header takes full width */
}

.acw-modal-title {
    margin: auto;
    color: #272727;
}

.acw-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.acw-modal-close:hover,
.acw-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.acw-modal-body {
    padding: 15px 0;
    color: #272727;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center body content horizontally */
}

.acw-modal-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto; /* Center image and add margin */
    border-radius: 5px;
}

.acw-modal-description {
    margin-bottom: 15px; /* Add margin below description */
}

.acw-modal-footer {
    padding-top: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #555;
    width: 100%; /* Ensure footer takes full width */
}

/* Draw Mode Activation Toggle Section */
.draw-mode-activation {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items to the start */
  margin-bottom: 25px; /* Increased margin */
  margin-top: -10px; /* Adjust top margin */
  padding-left: 5px; /* Add some padding */
  border-bottom: 1px solid #eee; /* Optional separator */
  padding-bottom: 20px; /* Space below separator */
}

.draw-mode-activation span:first-child { /* Style for the text */
  margin-right: 20px; /* Increased space between text and toggle */
  color: #e10098; /* Magenta color from image */
  font-style: italic;
  font-size: 0.95em; /* Slightly larger text */
}

/* Ensure toggle switch aligns nicely */
.draw-mode-activation .toggle-switch {
  flex-shrink: 0; /* Prevent toggle from shrinking */
}
/* Copy Parameters UI Styles */
.copy-parameters-ui {
    display: none; /* Hidden by default, controlled by JS */
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 5px 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.copy-source-select {
    flex-grow: 1;
    min-width: 200px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.copy-params-btn {
    padding: 4px 10px;
    padding-top: 8px;
    border: 1px solid #9b2b6a;
    background-color: #9b2b6a;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.copy-params-btn:disabled {
    background-color: #a0a5aa;
    border-color: #a0a5aa;
    cursor: not-allowed;
    opacity: 0.7;
}

.copy-success-message {
    /* display: none; is handled inline/by JS */
    color: #6ead62; /* Green */
    font-weight: bold;
    margin-left: 10px;
    font-size: 0.9em;
}
/* Styles for Rules Violation Object Count Toggle */
.rules-toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rules-toggle-container span {
  color: #272727; /* Dark text color, consistent with panel labels */
}

/* Ensure toggle switch aligns correctly */
.rules-toggle-container .toggle-switch {
  margin: 0; /* Remove default margins if any */
}</pre></body></html>