/* Elementor Selector HTML Widget Styles */

.elementor-selector-html-widget {
  width: 100%;
}

.elementor-selector-html-widget .selector-label {
  margin-bottom: 10px;
}

.elementor-selector-html-widget .selector-label label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.elementor-selector-html-widget .selector-container {
  position: relative;
  width: 100%;
}

.elementor-selector-html-widget .selector-container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background-color: #222222;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 3px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.elementor-selector-html-widget .selector-container::after {
  content: "\25BC";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  pointer-events: none;
  font-size: 12px;
}

.elementor-selector-html-widget .selector-container select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.elementor-selector-html-widget .selector-container select:hover {
  background-color: #333333;
}

.elementor-selector-html-widget .content-container {
  margin-top: 20px;
  width: 100%;
}

.elementor-selector-html-widget .html-content {
  width: 100%;
  transition: opacity 0.3s ease;
}

/* Style for when in Elementor editor */
.elementor-editor-active .elementor-selector-html-widget .html-content {
  display: block !important;
  opacity: 0.7;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px dashed #ddd;
}

.elementor-editor-active .elementor-selector-html-widget .html-content::before {
  content: attr(data-option);
  display: block;
  background: #f5f5f5;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-size: 12px;
  color: #666;
}
