body {
    font-family: "Helvetica Neue", sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

#logoContainer {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: black;
}

#logoText {
    font-weight: bold;
    font-size: 1.4rem;
}

#siteLogo {
    height: 40px;
}

#headlineText {
    font-size: 1.5rem;
    text-align: right;
    color: #444;
}

#resultsContainer {
    margin-top: 50px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.flight-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 1.2rem 1.5rem;
    margin: 1rem auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.flight-card:hover {
    transform: scale(1.01);
}

.flight-header,
.flight-route,
.flight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-route {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.airline-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.airline-block img {
    height: 36px;
}

.flight-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2b9348;
    text-decoration: none;
}

.flight-price:hover {
    color: #208c3a;
    text-decoration: underline;
}
