/* assets/css/style.css */
.airline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.airline-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.airline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.airline-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.airline-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.id {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.airline-code {
    font-size: 16px;
    color: #0073e6;
    margin-bottom: 15px;
}

.visit-website-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.visit-website-btn:hover {
    background: #005bb5;
}
/* assets/css/style.css */
.duffel-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.duffel-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.duffel-container input,
.duffel-container button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.duffel-container input:focus {
    border-color: #0073e6;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

.duffel-container button {
    background: #0073e6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.duffel-container button:hover {
    background: #005bb5;
}

#loading-spinner {
    display: none;
    text-align: center;
    font-size: 18px;
    color: #0073e6;
    margin-top: 20px;
}
/* assets/css/style.css */
.flight-results {
    margin-top: 30px;
    display: grid;
    grid-column: 1 / 5;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

.flight-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.airline-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.flight-price {
    font-size: 18px;
    color: #0073e6;
    margin-bottom: 15px;
}

.select-flight-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-flight-btn:hover {
    background: #218838;
}
/* assets/css/style.css */
.duffel-confirmation,
.duffel-order {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.duffel-confirmation h3,
.duffel-order h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.duffel-confirmation p,
.duffel-order p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

#passenger-details-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

#passenger-details-form input:focus {
    border-color: #0073e6;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

#passenger-details-form button {
    background: #0073e6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#passenger-details-form button:hover {
    background: #005bb5;
}
#loading-spinner {
    text-align: center;
    font-size: 18px;
    color: #0073e6;
    margin-top: 20px;
}