* {
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f4ff, #eef2ff, #fff7fb);
    color: #2f2640;
  }
  
  .container {
    max-width: 560px;
    margin: 60px auto 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(108, 60, 233, 0.15);
  }
  
  h1 {
    text-align: center;
    color: #7b4fe8;
    margin-bottom: 20px;
  }
  
  select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  
  .city {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
  }
  
  .city h2 {
    margin: 0;
  }
  
  .date {
    font-size: 13px;
    color: #777;
  }
  
  .time {
    font-size: 22px;
    font-weight: 600;
    color: #7b4fe8;
  }
  
  .home-link {
    margin-top: 20px;
    background: none;
    border: none;
    color: #7b4fe8;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin: 20px;
  }