

.flight-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 50px auto;
    max-width: 1200px;
}

.flight-box {
    background-color: #f5f5f5;
    padding: 10px;
    /*border-radius: 10px;*/
    flex: 1;
    min-width: 200px;
    position: relative;
    width: 100%;
}
.flight-box .hotel-list{
    margin-left: -15px;
}
.label-text {
    font-size: 16px;
    color: #555;
}

.main-text {
    font-size: 30px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    border: none !important;
    background: transparent !important;
}

.sub-text option {
    font-size: 16px !important;
    color: #666 !important;
    font-weight: 400 !important;
}

.sub-text {
    font-size: 20px !important;
    color: #666 !important;
    font-weight: 400 !important;
}

.sub-text-one {
    font-size: 16px !important;
    color: #666 !important;
    font-weight: 400 !important;
}

.sub-main-text {
    font-size: 22px !important;
    color: #666 !important;
    font-weight: 400 !important;
}

.sub-main-bottom-text {
    font-size: 18px !important;
    color: #666 !important;
    font-weight: 400 !important;
}

.search-btn {
    background: linear-gradient(to right, #a32c1f, #68221c);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1.71vh 5vh;
    font-size: 2.57vh;
}

.search-btn:hover {
    opacity: 0.9;
}

.detail-card{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 3px #00000029;
    border-radius: 10px;
}

.passenger-list{
    display: flex !important;
    justify-content: space-between;
    padding: 4px 0;
    text-transform: capitalize;
}

.payment-tabs .nav-tabs {
    border-radius: 4px;
    overflow: scroll;
    border: none;
    flex-wrap: nowrap !important;
}

.payment-tabs .nav-tabs .nav-item {
    margin: 0;
    margin-right: 0.1rem;
}

.payment-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    font-weight: 500;
    color: #fff !important;
    background-color: #a31608;
    transition: all 0.3s ease;
    font-size:0.8rem

}

.payment-tabs .nav-tabs .nav-link.active {
    background-color: #3b5998;
}

.payment-tabs .nav-tabs .nav-link::after {
  display: none;
}
.radio-card {
    flex: 1 1 150px;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .radio-card:hover{
    border-color: #b73e2e;
    background: #fff3f2;
    outline: none;
  }
  .radio-card input[type="radio"] {
    appearance: none;
    position: absolute;
  }

.radio-card i {
  color: #777;
  font-size: 28px;
  flex-shrink: 0;
}
.radio-card span {
font-weight: 600;
font-size: 1rem;
user-select: none;
}
.radio-card.selected {
border-color: #b73e2e;
background: #fff3f2;
color: #b73e2e;
}
.radio-card.selected i {
  color: #b73e2e;
}
.radio-card.selected span {
  font-weight: 700;
}
/* Card styling */
.payment-tabs .card {
    border-radius: 8px;
}

/* Button styling */
.payment-tabs .btn-outline-primary {
    border: 1px solid #ffa53f;
    color: black;
    border-radius: 4px;
    padding: 8px;
    transition: all 0.3s ease;
}

.payment-tabs .btn-outline-primary:hover {
    background-color: #fff;
    color: black;
}

#paymentTabsContent .card{
    margin: 0 0.5rem
}

/* QR code container */
.qr-container {
    display: inline-block;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .flight-section {
        flex-direction: column;
        gap: 15px;
    }
}

/* CSS for Select and Input */

.custom-fields {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    padding: 0 !important;
    margin: 0 !important;
}

.custom-fields:focus {
    outline: none !important;
}

/* option {
    color: black;
    font-size: 18px;
} */

.city-select {
    width: 100%;
    margin-bottom: 5px;
}

.date-display {
    cursor: pointer;
}

.hidden-date {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.calendar-icon {
    font-size: 18px;
    margin-left: 5px;
    color: #888;
}

/* Remove outline and border on focus */
#fromCityInput:focus {
    outline: none;
    /* Remove the outline */
    border: none;
    /* Remove the border */
}

#toCityInput:focus {
    outline: none;
    /* Remove the outline */
    border: none;
    /* Remove the border */
}


.airport-details {
    display: inline-block;
    /* or block */
    max-width: 100%;
    /* or a specific px/em value */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Trip Radio CSS */
input[type="radio"]:checked {
    accent-color: #a32c1f;
    /* This changes the circle color in most modern browsers */
}


/* Common Button Styles */
.button-flight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    padding: 9px 33px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Add Another Flight Button */
.add-flight-btn {
    background: linear-gradient(to right, #ff7e5f, #6c231c);
    /* Gradient from pinkish to orange */
    color: white;
}

.add-flight-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    /* Slight enlargement effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Deeper shadow on hover */
}

.add-flight-btn i {
    margin-right: 10px;
    /* Spacing between icon and text */
}

.remove-flight-btn {
    background: linear-gradient(to right, #d50000, #c51162);
    color: white;
    width: 2.5rem;
    /* Responsive width */
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    /* Icon size */
    transition: all 0.2s ease;
}

.remove-flight-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.remove-flight-btn i {
    margin: 0;
    display: inline-block;
}

@media (max-width:767px){
   .visa-purpose-options{
    padding-left: 0px !important;
   }
   .radio-card {
      flex: 1 1 100%;
      padding: 10px;
      margin-right:10px !important ;
   }
   
  

.radio-card i {
  display: none;
}
.radio-card span {
line-height: 1;
font-size: 14px;
user-select: none;
}

}
/* Optional: adjust size on smaller screens */
@media (max-width: 576px) {
    .remove-flight-btn {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

        .radio-card {
        margin-right: 7px !important;
    }
    .radio-card span {
        font-size: 13px;
    }

}

.dropdown-list .list-group-item {
    border: none;
}
