.flight-info-header-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.airport-description {
    margin-top: 12px;
    color: #585858;
    line-height: 1.6;
    max-width: 800px;
}

.airport-description a {
    color: #306DDE;
    text-decoration: underline;
}

.airport-description a:hover {
    color: #2558b8;
}

/* TABLE */
.flight-table-results {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: left;
    margin-top: 30px;
    /* max-width: 330px; */
}

.flight-table-results__header-row {
    border-bottom: 1px solid #B5B5C3;
}

.flight-table-results__header-cell {
    padding: 10px 12px;
    font-weight: 600;
    color: #585858;
}

.flight-table-results__row {
    border-bottom: 1px solid #eee;
}

header.airport-hub-terminal-card__header{
    background-color: transparent;
}

.flight-table-results__cell {
    padding: 10px 12px;
    vertical-align: middle;
    color: #19191e;
}

/* Special stylings */
.flight-table-results__cell--flight, .flight-table-results__cell--flight a {
    font-weight: 600;
    color: #349455;
}

.flight-table-results__cell--time {
    font-weight: 600;
}

.flight-table-results__cell--extra-time{
    color: #F64E60;
    text-decoration: line-through;
    font-size: 12px;
}

.flight-table-results__cell--enroute, .flight-table-results__cell--ontime, .flight-table-results__cell--active {
    color: #306DDE;
    /* purple */
    font-weight: 400;
}

.flight-table-results__cell--scheduled, .flight-table-results__cell--landed {
    color: #349455;
    /* green */
    font-weight: 400;
}

.flight-table-results__cell--delayed {
    color: #F64E60;
    font-weight: 400;
}

.flight-table-results__day-row{
    background-color: #F4F7FD;
    height: 40px;
}

.flight-table-results__day-row td{
    padding-left: 15px;
}

/*  */

.flight-info-container.flight-radar-info-container {
    grid-template-columns: 3fr 1fr;
}

.flight-info-block.flight-map-info-block {
    width: 100%;
    height: 500px;
}

.flight-radar-marker-info {
    width: 200px;
    font-size: 13px;
}

.flight-radar-marker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-radar-marker-content{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flight-radar-marker-content .text-regular-p{
    font-size: 12px;
}

.flight-radar-marker-content{
    margin-top: 8px;
}

.flight-info-navbar-section{
    margin-top: 30px;
}

.flight-info-container .flight-info-navbar-section{
    margin-top: 0px;
}

.flight-all-info-wrapper .flight-info-container-list{
    margin-top: 40px;
}

.flight-all-info-wrapper .flight-table-results{
    margin-top: 0px;
}

.flight-info-header-search{
    display: flex;
    align-items: center;
    position: relative;
    width: 50%;
}

.flight-info-search {
    width: 100%;
    padding: 10px;
    background-color: #F4F7FD;
    border: none;
    border-radius: 12px;
    box-sizing: border-box;
    padding-left: 40px;
    height: 45px;
}

.flight-info-search-icon {
    position: absolute;
    left: 10px;
    z-index: 1;
}

.load-more-btn-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.load-more-btn{
    margin: 40px 0px 20px 0px;
    width: 100%!important;
}

.flight-radar-info-container .flight-statistic-content-right{
    padding-left: 10px;
}

.flight-radar-info-container .flight-statistic-content-left{
    padding-right: 10px;
}

.gm-ui-hover-effect {
    width: 48px !important;
    height: 28px !important;
}

.gm-ui-hover-effect span{
    width: 20px!important;
    height: 20px!important;
}

.no-results-msg {
  padding: 20px;
  text-align: center;
  color: #555;
}

/* Скрытие строк */
.flight-table-results__row--hidden { display: none !important; }
.flight-table-results__day-row--hidden { display: none !important; }

/* Лоудер */
.flight-table-loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(255,255,255,0.6);
}
.flight-table-results--loading + .flight-table-loader,
.flight-table-results--loading ~ .flight-table-loader {
  display: flex;
}
.flight-table-results--loading { filter: blur(0.3px); }

/* Спиннер */
.flight-table-loader .flight-table-spinner {
  width: 28px; height: 28px;
  border: 3px solid #ccc;
  border-top-color: #555;
  border-radius: 50%;
  animation: ftr-spin 0.8s linear infinite;
}

.nav.rm .btn-primary:focus:not(.btn-text){
    color: #306DDE!important;
}

@keyframes ftr-spin { to { transform: rotate(360deg); } }

/* airport info */
.airport-info-block { margin-top: 12px; }

.airport-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.airport-info-col { display: grid; gap: 10px; }

.airport-info-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}

.airport-link { text-decoration: underline; }

/* Airport Summary Block */
.airport-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 12px;
}

.airport-summary-col {
  display: grid;
  gap: 10px;
}

.airport-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.airport-summary-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E1E3EA;
}

.airport-summary-footer a {
  color: #306DDE;
  text-decoration: underline;
}

.airport-summary-footer a:hover {
  color: #2558b8;
}

.summary-stat {
  color: #349455;
}

.summary-stat.delayed {
  color: #F64E60;
}

.summary-stat.cancelled {
  color: #F64E60;
}

@media (max-width: 720px) {
  .airport-summary-grid {
    grid-template-columns: 1fr;
  }
}

.banners-slider {
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
}

.banners-slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.banner-slider-main-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

/* Airport Service Blocks */

.airport-service-block {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.airport-service-block:first-of-type{
    margin-top:20px;
}

.airport-service-block:hover {
    background: #E8EEF9;
    box-shadow: 0 2px 8px rgba(48, 109, 222, 0.1);
    cursor: pointer;
}

.airport-service-icon {
    flex-shrink: 0;
    background-color: #306DDE;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.airport-service-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.airport-service-content h4 {
    color: #19191e;
    margin: 0;
}

.airport-service-content p {
    color: #585858;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.airport-service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #306DDE;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.airport-service-link:hover {
    color: #2558b8;
}

.airport-service-link svg {
    transition: transform 0.2s ease;
}

.airport-service-link:hover svg {
    transform: translateX(2px);
}
  
@media (max-width: 720px) {
  .airport-info-grid { grid-template-columns: 1fr; }
}

/* Flight Details Page */
.flight-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flight-details-header {
    margin-bottom: 40px;
}

.flight-route-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    background: #F4F7FD;
    border-radius: 12px;
}

.flight-route-airport {
    text-align: center;
}

.flight-route-airport h1 {
    margin: 0 0 8px 0;
}

.flight-route-airport p {
    margin: 0;
}

.flight-route-arrow svg {
    width: 48px;
    height: 48px;
}

.flight-details-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E1E3EA;
    margin-bottom: 30px;
}

.flight-details-airline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.airline-logo-large {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
}

.flight-status-badge {
    padding: 8px 16px;
    border-radius: 8px;
    background: #F4F7FD;
}

.flight-status-badge.flight-status--scheduled {
    background: #E8F5E9;
    color: #349455;
}

.flight-status-badge.flight-status--active {
    background: #E3F2FD;
    color: #306DDE;
}

.flight-status-badge.flight-status--delayed {
    background: #FFEBEE;
    color: #F64E60;
}

.flight-status-badge.flight-status--landed {
    background: #E8F5E9;
    color: #349455;
}

.flight-status-badge.flight-status--canceled {
    background: #FFEBEE;
    color: #F64E60;
}

.flight-details-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: #F4F7FD;
    border-radius: 12px;
}

.flight-timeline-point {
    display: grid;
    grid-template-columns: 120px 60px 1fr;
    align-items: start;
    gap: 20px;
}

.timeline-time {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-time .text-bold-h2 {
    color: #19191e;
}

.delayed-time {
    color: #F64E60;
    text-decoration: line-through;
    font-size: 14px;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.departure-icon {
    background: #E3F2FD;
}

.arrival-icon {
    background: #E8F5E9;
}

.timeline-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-info p {
    margin: 0;
}

.flight-timeline-duration {
    display: grid;
    grid-template-columns: 120px 60px 1fr;
    gap: 20px;
    align-items: center;
}

.timeline-line {
    width: 2px;
    height: 40px;
    background: #B5B5C3;
    margin: 0 auto;
}

.timeline-duration-text {
    text-align: center;
}

.flight-details-additional {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E1E3EA;
}

.flight-details-additional h3 {
    margin: 0 0 16px 0;
}

.flight-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.flight-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flight-detail-item p {
    margin: 0;
}

.flight-details-skeleton {
    padding: 40px;
}

.skeleton-line {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 16px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 768px) {
    .flight-route-block {
        flex-direction: column;
        gap: 20px;
    }

    .flight-route-arrow svg {
        transform: rotate(90deg);
    }

    .flight-details-main {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .flight-timeline-point {
        grid-template-columns: 80px 40px 1fr;
        gap: 12px;
    }

    .flight-timeline-duration {
        grid-template-columns: 80px 40px 1fr;
        gap: 12px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
    }

    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1340px){
    .flight-info-container.flight-radar-info-container {
        grid-template-columns: 2.5fr 1fr;
    }
}

@media (max-width: 1024px){
    .flight-info-container.flight-radar-info-container {
        grid-template-columns: 1fr;
    }

    .flight-info-navbar-section .nav.rm{
        row-gap: 10px;
    }

    .flight-info-navbar-section{
        margin-top: 30px;
    }

    .flight-info-header-search{
        width: 100%;
    }

    .flight-info-block{
        overflow: auto;
    }

    .flight-main-info-section {
    overflow-x: auto;

  }

  .flight-table-results {
    min-width: 600px; /* или больше, в зависимости от колонок */
  }

  .flight-info-header-section{
    position: sticky;
    left: 0;
  }
}

/* Flight Card Table Layout */
.flight-card-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

.flight-card-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.flight-card-airline-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.flight-card-status-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.flight-card-status-badge.flight-status--scheduled {
    background: #343a40;
    color: #fff;
}

.flight-card-status-badge.flight-status--active {
    background: #306DDE;
    color: #fff;
}

.flight-card-status-badge.flight-status--landed {
    background: #343a40;
    color: #fff;
}

.flight-card-status-badge.flight-status--delayed {
    background: #ffc107;
    color: #000;
}

.flight-card-status-badge.flight-status--canceled {
    background: #F64E60;
    color: #fff;
}

.flight-card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #19191e;
}

.flight-card-subtitle {
    font-size: 14px;
    color: #585858;
    margin: 0 0 4px 0;
}

.flight-card-route {
    font-size: 16px;
    color: #19191e;
    margin: 0;
}

.flight-card-divider-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.flight-card-divider-left,
.flight-card-divider-right {
    padding: 0;
}

.flight-card-divider-icon {
    width: 0;
    padding: 0;
}

.flight-card-divider-line {
    height: 2px;
}

.flight-divider-complete {
    border-bottom: 2px solid #188038;
}

.flight-divider-dashed {
    border-bottom: 2px dashed #cccfcd;
}

.flight-card-plane-icon {
    margin-top: -11px;
    transform: rotate(90deg);
    color: #188038;
    display: inline-block;
    fill: currentColor;
    height: 24px;
    line-height: 24px;
    position: relative;
    width: 24px;
}

.flight-card-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.flight-card-details-cell {
    vertical-align: top;
    /* padding: 0 12px; */
}

.flight-card-details-left {
    width: 50%;
    border-right: 1px solid #6c757d;
}

.flight-card-details-right {
    width: 50%;
    text-align: right;
}

.flight-card-airport-code {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #19191e;
}

.flight-card-airport-name {
    font-size: 16px;
    color: #19191e;
    margin: 0 0 4px 0;
}

.flight-card-date {
    font-size: 16px;
    color: #19191e;
    margin: 0 0 8px 0;
}

.flight-card-airport-info {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #19191e;
}

.flight-card-airport-info span {
    margin-right: 12px;
}

.flight-card-time {
    font-size: 32px;
    font-weight: 700;
    margin: 12px 0 0 0;
    color: #19191e;
}

.flight-card-time-scheduled {
    color: #19191e;
}

.flight-card-time-delayed {
    color: #dc3545;
}

.flight-card-time-landed {
    color: #188038;
}

.flight-card-original-time {
    margin: 4px 0 0 0;
    font-size: 13px;
}

.flight-card-original-time s {
    color: #585858;
}

.flight-card-additional-table {
    width: 100%;
    border-collapse: collapse;
}

.flight-card-additional-table td {
    /* padding: 8px 12px; */
    font-size: 14px;
    color: #19191e;
}

.flight-card-additional-label {
    color: #585858;
}

.flight-card-duration {
    font-size: 14px;
    color: #585858;
    margin: 0 0 12px 0;
    text-align: center;
}

.flight-card-updated {
    font-size: 14px;
    color: #585858;
    margin: 16px 0 0 0;
    text-align: left;
}

@media (max-width: 768px) {
    .flight-card-wrapper {
        padding: 16px;
    }

    .flight-card-title {
        font-size: 22px;
    }

    .flight-card-airport-code {
        font-size: 20px;
    }

    .flight-card-time {
        font-size: 26px;
    }

    .flight-card-details-left {
        border-right: none;
        border-bottom: 1px solid #6c757d;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .flight-card-details-right {
        text-align: left;
    }

    .flight-card-details-table tr {
        display: flex;
        flex-direction: column;
    }

    .flight-card-details-cell {
        width: 100% !important;
    }
}

/* Flight Search Block */
.flight-search-block {
    margin-bottom: 30px;
}

.flight-search-tabs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    border-bottom: 2px solid #E1E3EA;
}

.flight-search-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #585858;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

.flight-search-tab:hover {
    color: #306DDE;
}

.flight-search-tab.active {
    color: #306DDE;
    border-bottom-color: #306DDE;
}

.flight-search-content {
    margin-top: 20px;
}

.flight-search-panel {
    display: none;
}

.flight-search-panel.active {
    display: block;
}

.flight-search-form {
    margin-top: 12px;
}

.flight-search-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.flight-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E1E3EA;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.flight-search-input:focus {
    outline: none;
    border-color: #306DDE;
}

.flight-search-input::placeholder {
    color: #B5B5C3;
}

.flight-search-hint {
    margin-top: 8px;
    font-size: 13px;
}

.flight-search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 16px;
}

.flight-search-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 16px;
    color: #F64E60;
}

.flight-search-error svg {
    color: #F64E60;
}

/* Flight Search Result Card */
.flight-search-result-card {
    background: #F4F7FD;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.flight-search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E1E3EA;
    margin-bottom: 24px;
}

.flight-search-result-airline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.flight-search-airline-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.flight-search-status {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.flight-search-status.flight-status--scheduled {
    background: #343a40;
    color: #fff;
}

.flight-search-status.flight-status--active,
.flight-search-status.flight-status--enroute {
    background: #306DDE;
    color: #fff;
}

.flight-search-status.flight-status--landed {
    background: #349455;
    color: #fff;
}

.flight-search-status.flight-status--delayed {
    background: #ffc107;
    color: #000;
}

.flight-search-status.flight-status--canceled {
    background: #F64E60;
    color: #fff;
}

.flight-search-result-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
}

.flight-search-route-point {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flight-search-route-point:last-child {
    text-align: right;
}

.flight-search-airport-code {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #19191e;
}

.flight-search-time {
    font-size: 20px;
    font-weight: 600;
    margin: 4px 0 0 0;
    color: #19191e;
}

.flight-search-time-delayed {
    color: #dc3545;
}

.flight-search-original-time {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: #585858;
}

.flight-search-terminal {
    margin-top: 8px;
    font-size: 13px;
}

.flight-search-route-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.flight-search-progress {
    width: 100%;
    height: 2px;
    background: #E1E3EA;
    position: relative;
    margin-top: 12px;
}

.flight-search-progress-line {
    height: 100%;
    background: #349455;
    transition: width 0.3s ease;
}

.flight-search-plane-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #306DDE;
}

.flight-search-plane-icon svg {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
}

.flight-search-aircraft-info {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E1E3EA;
    font-size: 14px;
    color: #585858;
}

.flight-search-result-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E1E3EA;
    text-align: center;
}

@media (max-width: 768px) {
    .flight-search-input-wrapper {
        flex-direction: column;
    }

    .flight-search-input-wrapper .btn {
        width: 100%;
    }

    .flight-search-result-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .flight-search-result-route {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flight-search-route-divider {
        order: 2;
    }

    .flight-search-route-point:last-child {
        text-align: left;
        order: 3;
    }

    .flight-search-plane-icon svg {
        transform: rotate(180deg);
    }

    .flight-search-progress {
        transform: rotate(90deg);
        width: 80px;
        margin: 20px 0;
    }

    .flight-search-aircraft-info {
        flex-direction: column;
        gap: 8px;
    }
}

/* ====== Flight Date Tabs ====== */
.flight-date-tabs-wrapper {
    display: none; /* Временно скрыто */
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.flight-date-tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.flight-date-tabs {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: #F4F7FD;
    border-radius: 12px;
    min-width: max-content;
}

.flight-date-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.flight-date-tab:hover {
    background: rgba(48, 109, 222, 0.08);
}

.flight-date-tab.active {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.flight-date-tab-day {
    font-size: 12px;
    font-weight: 500;
    color: #7E8299;
    text-transform: lowercase;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.flight-date-tab.active .flight-date-tab-day {
    color: #306DDE;
    font-weight: 600;
}

.flight-date-tab-date {
    font-size: 14px;
    font-weight: 600;
    color: #19191E;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .flight-date-tabs {
        gap: 6px;
        padding: 3px;
    }

    .flight-date-tab {
        min-width: 70px;
        padding: 10px 12px;
    }

    .flight-date-tab-day {
        font-size: 11px;
    }

    .flight-date-tab-date {
        font-size: 13px;
    }
}
/* ====== Flight Related Links ====== */
.flight-related-links {
    margin-top: 32px;
}

.flight-related-links h3 {
    margin-bottom: 16px;
    color: #19191E;
}

.flight-info-navbar-section {
    width: 100%;
}

.flight-info-navbar-section .nav.rm {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.flight-info-navbar-section .nav-item {
    list-style: none;
}
/* 
.flight-info-navbar-section .nav-link.btn.btn-primary.rm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #FFFFFF;
    border: 1px solid #E0E4EB;
    border-radius: 8px;
    color: #19191E;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.flight-info-navbar-section .nav-link.btn.btn-primary.rm:hover {
    background: #306DDE;
    border-color: #306DDE;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(48, 109, 222, 0.25);
}

.flight-info-navbar-section .nav-link.btn.btn-primary.rm svg {
    flex-shrink: 0;
}

.flight-info-navbar-section .nav-link.btn.btn-primary.rm.active {
    background: #306DDE;
    border-color: #306DDE;
    color: #FFFFFF;
} */

@media (max-width: 768px) {
    .flight-related-links {
        margin-top: 24px;
    }

    .flight-info-navbar-section .nav.rm {
        flex-direction: column;
        gap: 8px;
    }

    .flight-info-navbar-section .nav-link.btn.btn-primary.rm {
        width: 100%;
        justify-content: flex-start;
        font-size: 13px;
        padding: 8px 12px;
    }
}
