.oc-giving-dropdown {
  margin: 1rem 0;
  font-family: Arial, sans-serif;
}

.oc-giving-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #4E9B5C; /* deep blue */
}

.oc-giving-row {
  display: flex;
  gap: .5rem;
  align-items: center;
  max-width: 520px;
}

.oc-giving-select {
  flex: 1;
  width: 100%;
  max-width: 400px;
  padding: 0.75rem 1rem;
  border: 2px solid #4E9B5C;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23002f6c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

.oc-giving-select:hover {
  border-color: #4E9B5C; /* red hover */
}

.oc-giving-select:focus {
  outline: none;
  border-color: #fbc02d; /* gold focus */
  box-shadow: 0 0 5px rgba(251, 192, 45, 0.6);
}

.oc-giving-button {
  padding: .7rem 1rem;
  border: 2px solid #4E9B5C;
  border-radius: 8px;
  background: #fff;
  color: #002f6c;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.oc-giving-button:hover {
  background: #4E9B5C;
  color: #fff;
  border-color: #4E9B5C;
}

.oc-giving-button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(251, 192, 45, 0.6);
  border-color: #fbc02d;
}