body {
  background-color: rgb(229, 229, 229);
  font-size: 16px;
  text-align: center;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  margin-top: 50px;
}

.info-cont {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
}

.info-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

select, input {
  width: 200px;
  padding: 5px;
  font-size: 16px;
  text-align: center;
  background-color: white;
  border: 1px solid black;
  border-radius: 0;
}

input[readonly] {
  background-color: white;
  cursor: not-allowed;
}

input[type="date"] {
  width: 200px;
  padding: 5px;
  font-size: 16px;
  text-align: center;
  background-color: white;
  border: 1px solid black;
  border-radius: 0;
}

button {
  display: block;
  margin: 50px auto;
  padding: 15px 30px;
  font-size: 18px;
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
}

.datumu-fields {
  display: flex;
  justify-content: center;
  gap: 40px; 
  margin-top: 20px;
}

.date-fields .info-item {
  width: auto;
  max-width: 300px;
}

button:hover {
  background-color: #f0f0f0;
}