/* Drawing tool buttons - cloned from .toggle-btn base styles */
.toggle-btn-drawing {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  color: #212529;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 48px;
  font-weight: 600;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin: 2px;
  font-size: 0.95em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible !important;
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
}

.toggle-btn-drawing:hover {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border-color: #007bff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.toggle-btn-drawing i {
  font-size: 1.1em;
  display: inline-block;
  color: inherit;
}

.toggle-btn-drawing.active {
  background: linear-gradient(135deg, #4a90e2 0%, #1e3a8a 100%);
  border-color: #1e3a8a;
  color: white;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

/* Select görünümü ve hover listesi iyileştirmeleri */
.toggle-btn-drawing select,
select.toggle-btn-drawing {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: inherit;
  color: inherit;
  border: none;
  outline: none;
  max-width: 100%;
}

/* Some browsers render option hover; target general case */
select.toggle-btn-drawing option {
  color: #222;
  background: #fff;
}
select.toggle-btn-drawing option:hover,
select.toggle-btn-drawing option:focus {
  background: #f2f3f5; /* açık gri */
}


