.search-container {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.search-input {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid rgba(244,239,230,0.12);
  color: var(--text-color);
  padding: 0.58rem 0.94rem;
  font-size: 1rem;
  height: 41px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(244,239,230,0.08);
}

.search-input:focus {
  outline: none;
  border-color: rgba(244,239,230,0.45);
  box-shadow: 0 0 0 3px rgba(244,239,230,0.18);
  background: rgba(21,21,20,0.92);
}

.search-input::placeholder {
  white-space: normal;
  text-align: left;
  line-height: 21px;
}

.vehicle-search-container {
  align-items: stretch;
}

.vehicle-state-input {
  flex: 0 0 210px;
  min-width: 180px;
  color-scheme: dark;
}

.vehicle-state-input option {
  background: #141313;
  color: var(--text-color);
}

.search-btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  background: transparent;
  color: var(--search-btn);
  padding: 10px 31px;
  border: 1px solid var(--search-btn);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  
  z-index: 1;
  
  min-width: 136px;
  
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(244,239,230, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.search-btn:hover::before {
  left: 0;
}

.search-btn:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 0 20px rgba(244,239,230, 0.35);
  transform: translateY(-1px);
}

.search-btn:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.search-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(244,239,230, 0.4);
}

.search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.file-upload-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.image-upload-controls {
  gap: 10px;
}

.image-upload-controls .file-input-label {
  margin-right: 0;
}

.image-file-input-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.image-file-input-label .image-file-label-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-remove-toggle {
  padding: 0 4px;
  height: 41px;
}

.image-remove-toggle .email-mode-toggle-switch {
  order: 2;
}

.image-remove-toggle .email-mode-toggle-slider {
  background-color: rgba(138,135,130, 0.55);
}

.image-remove-toggle-label {
  order: 3;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .search-container:has(> .search-input:first-child:nth-last-child(2)) {
    flex-direction: row;
    gap: 0;
    padding: 0 0.75rem 0.55rem;
    background: linear-gradient(180deg, rgba(11,11,11,0.96), rgba(11,11,11,0));
  }

  .search-container:has(> .search-input:first-child:nth-last-child(2)) > .search-input {
    width: auto;
    min-width: 0;
    height: 46px;
    min-height: 46px;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(244,239,230,0.2);
    border-top: 0 !important;
    border-right: 0;
    border-radius: 0 0 0 var(--radius-md);
    background: linear-gradient(180deg, #0b0b0b, #0f0f0e);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
  }

  .search-container:has(> .search-input:first-child:nth-last-child(2)) > .search-input:focus {
    border-color: rgba(244,239,230,0.42);
    background: linear-gradient(180deg, #0d0d0d, #121212);
    box-shadow: inset 0 0 0 1px rgba(244,239,230,0.08), 0 0 0 2px rgba(244,239,230,0.08);
  }

  .search-container:has(> .search-input:first-child:nth-last-child(2)) > .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px !important;
    width: 46px !important;
    min-width: 46px !important;
    min-height: 46px;
    padding: 0;
    border-color: rgba(244,239,230,0.26);
    border-top: 0;
    border-radius: 0 0 var(--radius-md) 0;
    background: linear-gradient(180deg, #111111, #171616);
    box-shadow: inset 1px 0 0 rgba(244,239,230,0.08), inset 0 1px 0 rgba(255,255,255,0.025);
    color: rgba(244,239,230,0.9);
    font-size: 0;
    font-weight: 500;
    letter-spacing: 0;
  }

  .search-container:has(> .search-input:first-child:nth-last-child(2)) > .search-btn::after {
    content: "\f1d8";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    font-family: "Font Awesome 6 Free";
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
  }

  .search-container:has(> .search-input:first-child:nth-last-child(2)) > .search-btn:focus {
    border-color: rgba(244,239,230,0.42);
    box-shadow: inset 1px 0 0 rgba(244,239,230,0.12), 0 0 0 2px rgba(244,239,230,0.08);
  }

  .vehicle-search-container {
    flex-wrap: wrap;
  }

  .vehicle-search-container .search-input,
  .vehicle-search-container .search-btn {
    width: 100%;
  }

  .vehicle-state-input {
    flex-basis: 100%;
  }

  .image-upload-controls {
    flex-wrap: wrap;
  }

  .image-file-input-label {
    width: 100%;
  }

  .image-remove-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 4px 0 0;
  }
}

.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input-label {
  display: inline-block;
  padding: 0.55rem 0.90rem;
  background: rgba(244,239,230, 0.1);
  color: var(--primary);
  border: 1px solid rgba(244,239,230, 0.3);
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
  flex-grow: 1;
  text-align: center;
  font-size: 0.78rem;
  transition: all 0.3s ease;
}

.file-input-label:hover {
  background: rgba(244,239,230, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.file-input-label i {
  margin-right: 8px;
}

.hash {
  font-family: var(--monospace-font);
  width: 100%;
}

.map-note {
  font-size: 0.8em;
  color: #7bffee;
  margin-top: 5px;
  text-align: center;
  width: 100%;
}

.email-mode-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    height: 41px;
}

.email-mode-toggle-switch {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.email-mode-toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.email-mode-toggle-slider {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(180, 40, 40, 0.5);
    border-radius: 34px;
    transition: .3s;
}

.email-mode-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-color);
    border-radius: 50%;
    transition: .3s;
}

.email-mode-toggle-switch input[type="checkbox"]:checked + .email-mode-toggle-slider {
    background-color: var(--primary);
}

.email-mode-toggle-switch input[type="checkbox"]:checked + .email-mode-toggle-slider:before {
    transform: translateX(20px);
    background-color: var(--terminal-bg);
}

.email-mode-toggle-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    user-select: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.email-mode-label-left {
    order: 1;
}

.email-mode-toggle-switch {
    order: 2;
}

.email-mode-label-right {
    order: 3;
}

.email-mode-toggle-label.active {
    color: var(--text-color);
    font-weight: 600;
}

.email-mode-help {
    position: relative;
    display: inline-flex;
    align-items: center;
    order: 4;
    margin-left: 4px;
}

.email-mode-help i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

.email-mode-help i:hover {
    color: var(--primary);
}

.email-mode-tooltip {
    visibility: hidden;
    width: 280px;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--text-color);
    text-align: left;
    border-radius: 6px;
    padding: 12px;
    position: absolute;
    z-index: 99999;
    top: 125%;
    right: 0;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(244,239,230, 0.3);
    pointer-events: none;
}

.email-mode-tooltip strong {
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
    margin-top: 8px;
}

.email-mode-tooltip strong:first-child {
    margin-top: 0;
}

.email-mode-help:hover i,
.email-mode-help.active i {
    color: var(--primary);
}

.email-mode-help:hover .email-mode-tooltip,
.email-mode-help.active .email-mode-tooltip {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .email-mode-tooltip {
        position: fixed !important;
        width: calc(100vw - 24px) !important;
        max-width: 520px !important;
        max-height: min(70vh, 520px) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        top: 50% !important;
        right: auto !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        padding: 12px !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        z-index: 2147483647 !important;
    }
}

@media (max-width: 480px) {
    .email-mode-tooltip {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        max-height: min(75vh, 520px) !important;
        top: 50% !important;
        right: auto !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        padding: 10px !important;
        font-size: 11px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
    }
}

.input-toggle-header {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.55rem 0.90rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    user-select: none;
}

.input-toggle-header:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.input-toggle-header i.fas.fa-edit {
    color: var(--primary);
    font-size: 0.9rem;
}

.input-toggle-header span {
    flex: 1;
    color: var(--text-color);
    font-size: 0.78rem;
}

.toggle-icon {
    color: var(--text-color-dimmed);
    transition: transform 0.3s ease;
}

.input-toggle-header.active .toggle-icon {
    transform: rotate(180deg);
}

.input-container-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.input-container-collapsible.expanded {
    max-height: 500px;
    border-color: var(--border-color);
    padding: 20px;
}

.header-textarea {
    width: 100%;
    min-height: 255px;
    background: var(--terminal-bg);
    border: 1px solid var(--terminal-border);
    border-radius: 6px;
    color: var(--text-color);
    font-family: var(--monospace-font);
    font-size: 0.77rem;
    line-height: 1.4;
    padding: 15px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.header-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 163, 0.1);
}

.header-textarea::placeholder {
    color: var(--text-color-dimmed);
    opacity: 0.7;
}

.header-input-container {
    flex-direction: column;
    gap: 15px;
}

.header-textarea {
    width: 100%;
    min-height: 170px;
    background: rgba(13,13,12, 0.8);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    padding: 12.75px;
    color: var(--text-color);
    font-family: var(--monospace-font);
    font-size: 14px;
    line-height: 1.4;
    resize: vertical;
    box-sizing: border-box;
}

.header-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(244,239,230, 0.3);
}

.header-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.dork-options-panel {
    margin: 0 0 8px 0;
    border-radius: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(244,239,230, 0.06);
    padding: 6px;
    height: 50px;
    overflow: visible;
    position: relative;
    z-index: 1000;
}

.dork-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 0;
    height: 100%;
    align-items: center;
}

.dork-option {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 28px;
}

.dork-toggle {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dork-toggle input[type="radio"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.dork-toggle-slider {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
    background-color: rgba(244, 239, 230, 0.12);
    border-radius: 34px;
    transition: .3s;
    margin-right: 6px;
}

.dork-toggle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-color);
    border-radius: 50%;
    transition: .3s;
}

.dork-toggle input[type="radio"]:checked + .dork-toggle-slider {
    background-color: var(--ei-cream, #f4efe6);
}

.dork-toggle input[type="radio"]:checked + .dork-toggle-slider:before {
    transform: translateX(16px);
    background-color: var(--surface-0);
}

.dork-toggle-label {
    color: var(--text-color-dimmed);
    font-size: 12px;
    line-height: 28px;
    font-family: var(--monospace-font);
}

.dork-toggle input[type="radio"]:checked ~ .dork-toggle-label {
    color: var(--ei-cream, #f4efe6);
}

.dork-mobile-dropdown {
    display: none;
}

.dork-dropdown-toggle {
    width: 100%;
    background: var(--surface-1);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 10px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--monospace-font);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(244,239,230, 0.05);
}

.dork-dropdown-toggle:hover {
    background: rgba(21,21,20, 0.92);
    border-color: rgba(244,239,230, 0.28);
}

.dork-dropdown-toggle .dropdown-chevron,
.dork-dropdown-toggle i.fa-angle-down {
    margin-left: 6px;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.dork-dropdown-toggle.active .dropdown-chevron,
.dork-dropdown-toggle.active i.fa-angle-down {
    transform: rotate(180deg);
}

.dork-dropdown-content {
    display: none;
    background: var(--surface-2);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 6px;
    margin-top: -1px;
}

.dork-dropdown-content.active {
    display: block;
}

.dork-mobile-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(244,239,230, 0.08);
}

.dork-mobile-option:last-child {
    border-bottom: none;
}

.dork-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.dork-mobile-toggle input[type="radio"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.dork-mobile-toggle-slider {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
    background-color: rgba(244,239,230, 0.12);
    border-radius: 34px;
    transition: .3s;
}

.dork-mobile-toggle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-color);
    border-radius: 50%;
    transition: .3s;
}

.dork-mobile-toggle input[type="radio"]:checked + .dork-mobile-toggle-slider {
    background-color: var(--ei-cream, #f4efe6);
}

.dork-mobile-toggle input[type="radio"]:checked + .dork-mobile-toggle-slider:before {
    transform: translateX(16px);
    background-color: var(--surface-0);
}

.dork-mobile-toggle-label {
    color: var(--text-color-dimmed);
    font-size: 14px;
    font-family: var(--monospace-font);
}

.dork-mobile-toggle input[type="radio"]:checked ~ .dork-mobile-toggle-label {
    color: var(--ei-cream, #f4efe6);
}

#google-dorks-results {
    scrollbar-color: var(--scrollbar-thumb-dim) transparent;
}

#google-dorks-results::-webkit-scrollbar {
    width: 5px;
}

#google-dorks-results::-webkit-scrollbar-track {
    background: transparent;
}

#google-dorks-results::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-dim);
    border-radius: 4px;
}

#google-dorks-results::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-dim-hover);
}

.dorks-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dorks-category {
    background: var(--ei-surface, rgba(10, 10, 10, 0.94));
    border: 1px solid var(--ei-border, rgba(244, 239, 230, 0.1));
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.dorks-category:hover {
    border-color: var(--ei-border-strong, rgba(244, 239, 230, 0.2));
}

.category-header {
    background: rgba(244, 239, 230, 0.02);
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--ei-border, rgba(244, 239, 230, 0.1));
}

.category-header:hover {
    background: rgba(244, 239, 230, 0.05);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ei-cream, #f4efe6);
}

.category-title i {
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    font-size: 1em;
}

.category-name {
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: -0.01em;
}

.category-count {
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.category-description {
    color: var(--ei-cream-dim, rgba(244, 239, 230, 0.68));
    font-size: 0.82em;
    margin-top: 5px;
}

.toggle-icon {
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    transition: transform 0.3s ease, color 0.2s ease;
}

.category-header:hover .toggle-icon {
    color: var(--ei-cream, #f4efe6);
}

.category-content {
    display: block;
    padding: 18px 20px 20px;
}

.dorks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 12px;
}

.dork-group {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--ei-border, rgba(244, 239, 230, 0.1));
    border-radius: 0;
    padding: 18px 0 0;
    margin-bottom: 20px;
}

.dork-group:first-child {
    border-top: 0;
    padding-top: 0;
}

.dork-group:last-child {
    margin-bottom: 0;
}

.dork-group-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 14px;
}

.dork-group-title {
    color: var(--ei-cream, #f4efe6);
    font-size: 0.62rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--ui-font);
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.dork-group-count {
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.dork-group-content {
    margin-top: 0;
}

.dork-item {
    background: var(--ei-surface-raised, rgba(16, 16, 16, 0.96));
    border: 1px solid var(--ei-border, rgba(244, 239, 230, 0.1));
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.dork-item:hover {
    border-color: var(--ei-border-strong, rgba(244, 239, 230, 0.2));
}

.dork-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 10px 8px 14px;
    border-bottom: 1px solid var(--ei-border, rgba(244, 239, 230, 0.1));
    background: rgba(244, 239, 230, 0.02);
}

.dork-title {
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    font-size: 0.55rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    font-family: var(--ui-font);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    min-width: 0;
    overflow-wrap: anywhere;
}

.dork-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.dork-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dork-action-btn svg {
    width: 14px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
    pointer-events: none;
}

.dork-action-btn .fa-google {
    font-size: 11.5px;
    line-height: 1;
}

.dork-action-btn:hover {
    border-color: var(--ei-border-strong, rgba(244, 239, 230, 0.2));
    background: rgba(244, 239, 230, 0.06);
    color: var(--ei-cream, #f4efe6);
}

.dork-action-btn:focus-visible {
    outline: none;
    border-color: var(--ei-border-accent, rgba(244, 239, 230, 0.32));
    color: var(--ei-cream, #f4efe6);
}

.dork-action-btn:active {
    background: rgba(244, 239, 230, 0.1);
}

.dork-action-btn.is-copied {
    border-color: var(--ei-border-accent, rgba(244, 239, 230, 0.32));
    background: rgba(244, 239, 230, 0.1);
    color: var(--ei-cream, #f4efe6);
}

.dork-search-btn,
.dork-search-btn:hover,
.dork-search-btn:focus,
.dork-search-btn:visited {
    text-decoration: none;
}

.dork-description {
    color: var(--ei-cream-dim, rgba(244, 239, 230, 0.68));
    font-size: 0.76rem;
    margin: 0;
    padding: 11px 14px 0;
    line-height: 1.45;
}

.dork-query {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 9px 14px 13px;
    font-family: var(--monospace-font);
    font-size: 0.76rem;
    line-height: 1.5;
    word-break: break-word;
    box-shadow: none;
}

.dork-query code {
    color: var(--ei-cream-dim, rgba(244, 239, 230, 0.68));
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
}

.dork-query .dork-token-operator {
    color: var(--ei-cream, #f4efe6);
    font-weight: 600;
}

.dork-query .dork-token-phrase {
    color: var(--ei-cream, #f4efe6);
}

.dork-query .dork-token-boolean {
    color: var(--ei-cream-muted, rgba(244, 239, 230, 0.56));
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Google Dorks Generator — align search row with People Intelligence inputs */
#google-dorks .search-input {
    font-family: var(--monospace-font);
    font-size: 0.9rem;
    border: 1px solid rgba(244,239,230, 0.22);
}

#google-dorks .search-input:hover {
    border-color: rgba(244,239,230, 0.4);
    background: rgba(21,21,20, 0.85);
}

@media (max-width: 1500px) {
    .dork-options-grid {
        display: none;
    }
    
    .dork-mobile-dropdown {
        display: block;
    }
    
    .dork-options-panel {
        height: auto;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .dorks-grid {
        grid-template-columns: 1fr;
    }

    .dork-header {
        padding-left: 12px;
    }

    .dork-description {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dork-query {
        padding-left: 12px;
        padding-right: 12px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .toggle-icon {
        align-self: flex-end;
        margin-top: -20px;
    }
}

input, textarea, select {
    font-size: 1rem !important;
}

input::placeholder, textarea::placeholder {
    text-align: left !important;
    line-height: 21px !important;
}
