* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Avenir Next LT Pro;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 400px;
  background-color: #0c131f;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
}

.logo {
  width: 150px;
  margin: 10px;
}

.new-simulation-btn {
  background-color: #8ce8fe;
  color: black;
  border: none;
  margin: 20px;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  width: fit-content;
}

.new-simulation-btn:hover {
  background-color: #6ab8e0;
}

.main-content {
  flex: 1;
  padding: 30px 50px;
  background-color: #f3f3f8;
}

.title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.form-group label {
  width: 180px;
}

.form-label {
  width: fit-content;
  padding: 10px 15px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  color: #6f6f6f;
  font-weight: 500;
}

input[type="text"],
input[type="date"] {
  width: 100%;
  max-width: 380px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}

.select-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  appearance: none;
  background-color: white;
  cursor: pointer;
  outline: none;
}

.select-wrapper::after {
  content: "v";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-option label {
  width: fit-content;
  color: #333;
  font-weight: 500;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.payment-btn {
  background-color: #146f8a;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  max-width: 380px;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.payment-btn:hover {
  background-color: #1a7f9a;
}

.ages-container {
  margin-left: 30px;
  margin-bottom: 20px;
}

.ages-container .label {
  width: 150px !important;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.age-dropdown {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.age-dropdown .select-wrapper {
  width: 350px;
}

.results-container {
  box-sizing: border-box;
  max-width: 1024px;
  display: flex;
  gap: 30px;
  position: relative;
}

.sidebar-divider {
  border: none;
  border-top: 1px solid #8ce8fe;
}

.booking-details {
  flex: 1;
  padding: 20px;
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.detail-item .label {
  width: 180px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.detail-item .value {
  flex: 1;
  color: white;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  text-transform: capitalize;
}
