.fws-wrapper { max-width: 900px; margin: 30px auto; font-family: sans-serif; }
.fws-search-form { background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); border: 1px solid #e1e1e1; }
.fws-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.fws-input-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.fws-input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; }
.fws-submit { margin-top: 25px; text-align: right; }
.fws-submit button { background: #0073aa; color: white; padding: 14px 30px; border: none; border-radius: 6px; cursor: pointer; }
.fws-submit button:disabled { background: #ccc; cursor: not-allowed; }
.fws-results { margin-top: 35px; }
.fws-alert { padding:15px; background:#f8f9fa; border-left:4px solid #ccc; margin-bottom:20px; }
.fws-alert.fws-error { background:#fff5f5; border-left-color:#dc3545; color:#721c24; }
.fws-flight-card { background: #fff; border: 1px solid #e1e1e1; padding: 20px; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
.fws-flight-price { text-align: right; }
.fws-flight-price .price { display: block; font-size: 1.4em; color: #28a745; font-weight: 700; margin-bottom: 5px; }
.fws-book-btn { background: #28a745; color: white; border: none; padding: 8px 18px; border-radius: 4px; cursor: pointer; }
@media (max-width: 600px) { .fws-flight-card { flex-direction: column; align-items: flex-start; gap: 15px; } .fws-flight-price { width: 100%; text-align: left; } }