@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');

/* Base font size for rem calculation */
html {
  font-size: 16px;
}

/* Input styling */
.game-input {
  background-color: #E8E8E8;
  color: #333333;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.625rem 0.75rem;
  font-family: "Yatra One", sans-serif;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 0.75rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0,0,0,0.1);
}

/* Dropdown styling */
.dropdown-select {
  background-color: #E8E8E8;
  color: #333333;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.125rem 0.75rem;
  font-family: "Yatra One", sans-serif;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 0.75rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0,0,0,0.1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem;
  padding-right: 2rem;
  cursor: pointer;
}

.dropdown-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.dropdown-select option {
  background-color: #D9D9D9;
  color: #333333;
  padding: 0.625rem;
  font-family: "Yatra One", sans-serif;
}

/* Other work input container */
#other-work-container {
  margin-top: 0.5rem;
}

/* Responsive design */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}