.inp-desg select {
  width: 200px;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #374151;
  outline: none;
  transition: all 0.2s ease;

}

.inp-desg select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.inp-desg select:hover {
  border-color: #9ca3af;
}

/* Responsive spacing for mobile screens */
@media (max-width: 768px) {
  .inp-desg {
    margin-bottom: 16px;
  }
  
  .inp-desg select {
    width: 100%;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .inp-desg {
    margin-bottom: 20px;
  }
}