.select-simple {
  width: 250px; 
  padding: 12px 20px;
  border: 2px solid #ccc; 
  border-radius: 6px;
  background-color: #f4f4f4;
  font-size: 16px;
  font-family: "Arial", sans-serif; 
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none; 
  box-sizing: border-box;
}
.select-simple:hover {
  border-color: #999;
  background-color: #eaeaea; 
}
.select-simple:focus {
  border-color: #555;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(85, 85, 85, 0.3);
}
.select-simple option {
  background-color: #fff;
  color: #333;
  padding: 10px;
  font-size: 16px;
}
