body {
  margin: 0;
  padding: 0;
  background-color: #333333;
  font-family: 'Fira Sans', sans-serif;
  color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#calculator {
  background-color: transparent;
  border: 2px solid #666666;
  border-radius: 8px;
  padding: 20px;
  width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
  text-align: left; /* Выравнивание по левому краю */
  font-size: 36px;
  margin-bottom: 20px;
  color: #eeeeee;
}

.field {
  margin-bottom: 20px;
  text-align: left; /* Выравнивание всех строк по левому краю */
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.input-group {
  display: flex;
  align-items: center;
}

.input-group button {
  background: none;
  border: none;
  color: #eeeeee;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.input-group button:hover {
  color: #00bcd4;
}

.input-group input {
  width: 120px;
  text-align: center;
  border: 1px solid #666666;
  background-color: transparent;
  color: #eeeeee;
  padding: 10px;
  font-size: 24px;
  border-radius: 4px;
  margin: 0 10px;
}

#totalCost {
  text-align: left; /* Выравнивание строки Total Cost по левому краю */
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #666666;
  border-radius: 4px;
}

.reset-button {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  font-size: 16px;
  color: #eeeeee;
  border: 2px solid #cccccc;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
}

.reset-button:hover {
  background: #cccccc;
  color: #333333;
}

.field .value-text {
  font-size: 24px;
  color: #eeeeee;
  font-weight: bold;
  text-align: left;
  margin-left: 60px; /* Увеличен отступ для €50 */
}
