.amadeus-widget form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #f4f9ff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
	    align-items: flex-end;
}
.amadeus-widget form div { flex: 1; min-width: 150px; }
.amadeus-widget label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 5px; }
.amadeus-widget input, .amadeus-widget button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}
.amadeus-widget button {
    background: #0071c2;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.amadeus-widget button:hover { background: #005a9c; }
.autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.autocomplete-list li {
    padding: 8px;
    cursor: pointer;
}
.autocomplete-list li:hover { background: #0071c2; color: #fff; }
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0071c2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.amadeus-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.amadeus-results-table th {
    background: #0071c2;
    color: #fff;
    padding: 10px;
}
.amadeus-results-table td {
    border: 1px solid #ccc;
    padding: 8px;
}
.trip-type label {
    margin-right: 15px;
    font-weight: normal;
}
.trip-type input {
    margin-right: 5px;
}




/* Modal pour détails */
.amadeus-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}
.amadeus-modal-content {
    background: #fff;
    width: 90%;
    max-width: 720px;
    margin: 6% auto;
    padding: 18px;
    border-radius: 8px;
    position: relative;
}
.amadeus-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.flight-details p { margin: 6px 0; }
