.flight-widget {
  direction: rtl;
  text-align: center;
  font-family: inherit;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fw-inputs label {
  margin: 5px 8px;
  display: inline-block;
}

.fw-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  overflow-x: auto;
}

.fw-table th, .fw-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.agency-col {
  background: #E2FFE0;
}

.fw-card {
  border-radius: 8px;
  padding: 8px;
  transition: 0.3s;
}

.fw-card img {
  width: 60px;
  margin-bottom: 6px;
}

.fw-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.fw-agency-note {
  font-size: 12px;
  color: #444;
  margin-top: 4px;
}

.fw-suggestion {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.fw-share {
  margin-top: 20px;
}

.fw-share-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

.fw-share-icons a img {
  width: 32px;
  transition: 0.3s;
}

.fw-share-icons a img:hover {
  transform: scale(1.2);
}
