body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
}

.search-icon, .menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

h1 {
    font-size: 1.2rem;
    margin: 0;
}

main {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

form {
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.location-input {
    display: flex;
}

.location-input input {
    flex-grow: 1;
    margin-right: 10px;
}

.location-input button {
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"] {
    background-color: #4A4AFF;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background-color: #3A3AFF;
}

.recommendation {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #e8f4fd;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.error {
    color: #ff0000;
    font-weight: bold;
}
/* Add this to your existing styles.css */

.date-selection {
    display: flex;
    gap: 20px;
}

.date-selection input[type="radio"] {
    display: none;
}

.date-selection label {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.date-selection input[type="radio"]:checked + label {
    background-color: #4A4AFF;
    color: white;
}
/* Add these styles to your existing styles.css file */

.timeline {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #4A4AFF;
  top: 0;
  bottom: 0;
  left: 10px;
  margin-left: -1px;
}

.timeline-event {
  position: relative;
  margin-bottom: 25px;
}

.timeline-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid #4A4AFF;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content {
  margin-left: 35px;
  background-color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-content h3 {
  margin-top: 0;
  color: #4A4AFF;
  font-size: 1.1em;
}

.timeline-content p {
  margin: 5px 0 0;
  font-size: 0.9em;
  color: #333;
}

@media screen and (min-width: 600px) {
  .timeline {
    max-width: 600px;
    padding: 30px 0;
  }
  
  .timeline-content {
    margin-left: 35px;
    padding: 20px 25px;
  }
}


/* You may need to adjust other styles to accommodate the new layout */
