.elementor-1005 .elementor-element.elementor-element-329a85c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1005 .elementor-element.elementor-element-c3325fa{text-align:center;}.elementor-1005 .elementor-element.elementor-element-c3325fa .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-size:15px;font-weight:400;color:#555555;}.elementor-1005 .elementor-element.elementor-element-abadbeb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1005 .elementor-element.elementor-element-340f53a{padding:60px 30px 50px 30px;text-align:start;font-family:"Inter", Sans-serif;font-size:15px;font-weight:400;line-height:20px;color:var( --e-global-color-4cb4881 );}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}.elementor-1005 .elementor-element.elementor-element-340f53a{font-size:14px;}}/* Start custom CSS for html, class: .elementor-element-8852802 */.fids-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.fids-header {
  background: linear-gradient(135deg, rgba(0, 63, 125, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.airport-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.airport-info i {
  font-size: 2.5rem;
  color: #00d4ff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.airport-info h1 {
    font-family: Montserrat;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.airport-info p {
  color: #a0aec0;
  font-family: Inter;
  font-size: 0.9rem;
  font-weight: 400;
}

.current-time {
    font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 500;
  color: #00d4ff;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Filters */
.flight-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group label i {
  color: #00d4ff;
  font-size: 0.9rem;
}

.filter-group select {
  background: rgba(15, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: Inter;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.filter-group select:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.filter-group select:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
}

.filter-group select option {
  background: #1a2332;
  color: #ffffff;
  padding: 8px;
}

.results-count {
  color: #a0aec0;
  font-family: Inter;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: auto;
}

/* Flight Schedule Table */
.flight-schedule {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter;
  font-size: 0.9rem;
}

thead {
  background: linear-gradient(135deg, #003f7d 0%, #1a2332 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

th {
  padding: 16px 12px;
  text-align: left;
  font-family: Montserrat;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  border-bottom: 2px solid #00d4ff;
  white-space: nowrap;
}

th i {
  margin-right: 6px;
  color: #00d4ff;
  font-size: 0.85rem;
}

tbody tr {
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-family: Inter;
  font-weight: 500;
  white-space: nowrap;
}

/* Status badges */
.status {
  padding: 4px 12px;
  border-radius: 20px;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status.on-time {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status.delayed {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status.scheduled {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Footer */
.fids-footer {
  text-align: center;
  padding: 20px;
  margin-top: 24px;
  color: #a0aec0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fids-container {
    padding: 16px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .airport-info h1 {
    font-size: 1.5rem;
  }

  .current-time {
    font-size: 1.2rem;
  }

  .flight-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    min-width: auto;
  }

  .results-count {
    margin-left: 0;
    text-align: center;
  }

  /* Mobile table cards */
  .table-container {
    overflow-x: visible;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tbody tr {
    background: rgba(26, 35, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  tbody tr:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
  }

  td {
    border: none;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: normal;
  }

  td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    min-width: 100px;
  }

  td:first-child {
    border-top: 3px solid #00d4ff;
    padding-top: 12px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .airport-info {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .airport-info i {
    font-size: 2rem;
  }

  .airport-info h1 {
    font-size: 1.3rem;
  }

  td::before {
    min-width: 80px;
    font-size: 0.7rem;
  }
}

/* Loading animation for filtered results */
.filtering {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

/* Scrollbar styling */
.table-container::-webkit-scrollbar {
  height: 8px;
}

.table-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.5);
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.7);
}/* End custom CSS */