/* selectors.css */

.tlc-selector {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: var(--font-family, 'Inter', sans-serif);
  background-color: #fff;
  color: var(--rich-black, #0D0D0D);
  cursor: pointer;
  box-sizing: border-box;
  height: 48px;
}

select.tlc-selector {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="file"].tlc-selector {
  padding: 6px 12px;
  display: flex;
  align-items: center;
}

.tlc-selector:focus {
  outline: none;
  border-color: var(--rich-black, #0D0D0D);
  box-shadow: 0 0 0 3px rgba(13, 13, 13, 0.1);
}

input[type="file"].tlc-selector::file-selector-button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background-color: var(--rich-black, #0D0D0D);
  color: #fff;
  cursor: pointer;
  margin-right: 16px;
  font-family: var(--font-family, 'Inter', sans-serif);
  font-weight: 500;
  transition: background-color 0.2s ease;
}

input[type="file"].tlc-selector::file-selector-button:hover {
  background-color: #333;
}
