.paper-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.paper-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid #000;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  line-height: 1.4;
  min-height: 48px;
  box-sizing: border-box;
}

.paper-select:hover:not(.paper-select--disabled) {
  background-color: #f5f5f5;
}

.paper-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.paper-select--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f9f9f9;
}

.paper-select--error {
  border-color: #e74c3c;
}

.paper-select--open {
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}

.paper-select-value {
  flex: 1;
  color: #000;
}

.paper-select-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
  font-size: 12px;
}

.paper-select--open .paper-select-arrow {
  transform: rotate(180deg);
}

.paper-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  border: 2px solid #000;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
}

.paper-select-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  line-height: 1.4;
  border-bottom: 2px solid #000;
}

.paper-select-option:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.paper-select-option:hover:not(.paper-select-option--disabled) {
  background-color: #f5f5f5;
}

.paper-select-option--selected {
  background-color: #000;
  color: #fff;
}

.paper-select-option--selected:hover {
  background-color: #000;
}

.paper-select-option--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f9f9f9;
}

.paper-select-option--disabled:hover {
  background-color: #f9f9f9;
}

.paper-select-error {
  margin-top: 4px;
  color: #e74c3c;
  font-size: 14px;
  font-family: 'Patrick Hand', cursive;
}
