/* CSS Document */

body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  margin: 0; padding: 0;
}
.container {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
h1 {
  text-align: center;
}
.inputs input, .inputs select, .inputs button {
  width: 80%;
  padding: 10px;
  margin: 6px 0;
  font-size: 16px;
}
button {
  background-color: #3F51B5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #303F9F;
}
.results p, .results pre {
  font-size: 16px;
  margin: 6px 0;
}
#tripodHint, #starIcon {
  display: none;
  font-size: 20px;
  margin-top: 4px;
}
.ev-scale-container {
  width: 100%;
  height: 20px;
  background: #ddd;
  border-radius: 10px;
  margin-top: 10px;
  position: relative;
}
.ev-scale {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: #FFC107;
}
.language-select {
  text-align: right;
  margin-bottom: 8px;
}
.dropdown {
text-align: center;
height: 100%;    
font-size: 40px;
margin-bottom: 20px;
}