body {
    font-family: 'Cerebri Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* background: linear-gradient(to bottom, #87CEEB, #FFFFFF); */
    background: linear-gradient(to bottom, #AEEEEE, #F0FFFF);
}
  
h1 {
    text-align: center;
    font-family: sans-serif;
    font-size: 36px;
}
  
h2 {
    margin: 0 0 5px;
    font-size: 30px;
    display: inline-block;
}
  
select {
    display: block;
    width: 100%;
    font-size: 18px;
    border-radius: 4px;
    padding: 10px;
}
  
.container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 50px;
    background: white;
    padding: 15px 30px 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}
  
.city {
    display: flex;
    margin: 10px 0;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
  
.city:last-child {
    border: none;
}
  
.date {
    opacity: 0.6;
}
  
.time {
    font-size: 48px;
    font-weight: bold;
}
  
.time small {
    font-size: 24px;
    vertical-align: middle;
    line-height: 48px;
}

.city-header {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin-bottom: 4px;
}

.city-header img {
    width: 33px;
    height: auto;
    padding-bottom: 5px;
}
.header {
    display: flex;
    align-items: center; 
    gap: 12px; 
    justify-content: center; 
}

.header img {
    width: 40px;
    height: auto;
}

.back-link {
    display: inline-block;
    margin: 5px auto 10px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    background: #f1f1f1;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #ddd;
    color: #000;
}

footer {
    text-align: center;
    font-size: 16px;
    padding: 15px 10px;
    margin-top: 30px;
    margin-top: auto;
}

footer strong {
    color: #333;
    font-weight: bold;
}

footer a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
    color: #005bb5;
    text-decoration: underline;
}