.input-component {
  margin: 10px 0;
  color: #ccc;
  background: #2c2c2c;
  padding: 10px;
  border-radius: 5px;
}
.input-component label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.input-component select,
.input-component input[type="file"] {
  width: 100%;
  padding: 5px;
  background: #1c1c1c;
  border: 1px solid #3c3c3c;
  color: #ccc;
  border-radius: 3px;
}
.input-component select:focus,
.input-component input[type="file"]:focus {
  outline: none;
  border-color: #a32c2c;
  box-shadow: 0 0 5px rgba(163, 44, 44, 0.5);
}

/* Existing styles from previous response */
.image-selector-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
}
.image-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.image-option {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #2c2c2c;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.image-option.selected {
  border-color: #a32c2c;
  box-shadow: 0 0 0 3px rgba(163, 44, 44, 0.3);
}
.image-info {
  color: #ccc;
  font-size: 0.9em;
  padding: 5px;
  background: #1c1c1c;
  border-radius: 3px;
}