.nice-select {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 12px 40px 12px 15px;
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nice-select:hover,
.nice-select:focus,
.nice-select.open {
  border-color: #34A6F5;
  box-shadow: 0 0 0 3px rgba(52, 166, 245, 0.15);
}

.nice-select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #34A6F5;
  border-bottom: 2px solid #34A6F5;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.nice-select.open::after {
  transform: translateY(-50%) rotate(-135deg);
}

.nice-select .list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 10;
}

.nice-select.open .list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nice-select .option {
  padding: 10px 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nice-select .option:hover,
.nice-select .option.selected {
  background: #E8F6FF;
  color: #34A6F5;
}

.nice-select.disabled {
  opacity: 0.6;
  pointer-events: none;
}
