/* Scoped plugin styles */
.atb-wrapper {
    font-family: "Segoe UI", Tahoma, sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.atb-wrapper h2,
.atb-wrapper h3 {
    color: #222;
    margin-bottom: 20px;
}

.atb-search-form,
.atb-flights-list {
    margin-bottom: 40px;
}

/* Labels & inputs */
.atb-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

.atb-wrapper input[type="text"],
.atb-wrapper input[type="email"],
.atb-wrapper input[type="date"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
    font-size: 16px;
}

.atb-wrapper input:focus {
    border-color: #0073aa;
    outline: none;
}

/* Buttons */
.atb-wrapper button {
    background: #0073aa;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.atb-wrapper button:hover {
    background: #005f8d;
}

/* Flight cards */
.atb-flights-list > div {
    background: #f5f7f9;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.atb-flights-list > div:hover {
    transform: scale(1.01);
}

/* Success/Error messages */
.atb-message {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.atb-message.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.atb-message.error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}
