/* =============================================
   RESET & GLOBAL STYLES
   ============================================= */
.pagination li {
    margin-left: 0;
    float: none;
    list-style-type: none;
}

.fas {
    display: none !important;
}

.glyphicon-remove-circle::before {
    content: "×";
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.form-select {
    background-image: none !important;
}

.contact_info_list i, 
.information_links i {
    margin-right: 0px !important;
}

/* =============================================
   MAIN NAVIGATION MENU STYLES - FIXED DROPDOWN ICONS
   ============================================= */

/* Menu header background */
.menu-header {
    background: #4d2a7a;
    padding: 0;
}

.menu-header .main_menu {
    height: auto;
    min-height: 50px;
}

.menu-header .main_menu .navbar {
    padding: 0 !important;
    background: #4d2a7a !important;
    margin: 0;
}

/* Main navbar nav - HORIZONTAL LAYOUT */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    background: #4d2a7a !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.navbar-nav > li.nav-item {
    display: inline-block !important;
    float: none !important;
    position: relative;
    margin: 0 !important;
    border-right: 1px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.navbar-nav > li.nav-item:last-child {
    border-right: none;
}

/* Main menu links */
.navbar-nav > li.nav-item > a.nav-link {
    display: block !important;
    color: #ffffff !important;
    background: transparent !important;
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px !important;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav > li.nav-item > a.nav-link:hover,
.navbar-nav > li.nav-item > a.nav-link:focus,
.navbar-nav > li.nav-item.active > a.nav-link {
    background: #ffffff !important;
    color: #4d2a7a !important;
}

/* =============================================
   DROPDOWN ICONS - FIXED & PROFESSIONAL
   ============================================= */

/* Main dropdown arrow - using CSS triangle */
.navbar-nav .dropdown > a.nav-link::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
    transition: all 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.navbar-nav .dropdown:hover > a.nav-link::after {
    transform: rotate(180deg);
}

/* Nested dropdown arrow - using CSS chevron */
.dropdown-submenu > .dropdown-item::after,
.dropdown-submenu > a::after {
    content: "›";
    float: right;
    margin-left: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

/* Alternative: Using Font Awesome icons (if available) */
/* Uncomment if you have Font Awesome loaded */
/*
.navbar-nav .dropdown > a.nav-link::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.dropdown-submenu > .dropdown-item::after,
.dropdown-submenu > a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    margin-left: 10px;
    font-size: 14px;
}
*/

/* =============================================
   DROPDOWN MENUS - CONSISTENT STYLING
   ============================================= */

/* Dropdown menu container - HIDDEN BY DEFAULT */
.dropdown-menu:not(.datepicker) {
    position: absolute;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    min-width: 220px;
    margin: 0;
    padding: 0;
    z-index: 1000;
    
    /* CRITICAL: Hidden by default */
    display: none !important;
    flex-direction: column !important;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu,
.navbar-nav .dropdown:focus-within > .dropdown-menu {
    display: block !important;
}

/* =============================================
   DROPDOWN ITEMS - CONSISTENT FONT & COLOR
   ============================================= */

/* All dropdown items - consistent styling */
.dropdown-menu li {
    position: relative;
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

/* STANDARDIZED DROPDOWN ITEM STYLING */
.dropdown-menu .dropdown-item,
.dropdown-menu a,
.dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    color: #4d2a7a !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    
    /* CONSISTENT FONT STYLING */
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: none !important;
    line-height: 1.4 !important;
    
    float: none !important;
}

/* Hover state for ALL dropdown items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    background: #4d2a7a !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* MULTI-LEVEL DROPDOWN FIX */
.dropdown-submenu {
    position: relative;
    display: block !important;
    width: 100% !important;
}

.dropdown-submenu > .dropdown-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    margin-top: -1px !important;
    margin-left: 0 !important;
    
    /* CRITICAL: Hidden by default */
    display: none !important;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
    display: block !important;
}

/* Keep parent highlighted when dropdown is open */
.navbar-nav .dropdown:hover > a.nav-link,
.navbar-nav .dropdown:focus-within > a.nav-link {
    background: #ffffff !important;
    color: #4d2a7a !important;
}

/* =============================================
   MOBILE MENU STYLES
   ============================================= */

/* White navbar toggler */
.navbar-toggler {
    border-color: white !important;
    padding: 5px 10px;
    margin: 8px 15px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 20px;
    height: 20px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #4d2a7a;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
    }
    
    .navbar-nav {
        display: block !important;
        flex-direction: column !important;
        text-align: left;
    }
    
    .navbar-nav > li.nav-item {
        display: block !important;
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
    
    .navbar-nav > li.nav-item > a.nav-link {
        padding: 12px 15px !important;
        white-space: normal;
    }
    
    /* Fix mobile dropdown arrows */
    .navbar-nav .dropdown > a.nav-link::after {
        float: right;
        margin-top: 6px;
    }
    
    .dropdown-submenu > .dropdown-item::after,
    .dropdown-submenu > a::after {
        float: right;
        margin-top: 0;
    }
    
    /* Mobile dropdowns - show when parent has show class */
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.1) !important;
        
        /* Hidden by default on mobile */
        display: none !important;
    }
    
    /* Show dropdown when parent has show class (Bootstrap 5) */
    .dropdown.show > .dropdown-menu,
    .dropdown-submenu.show > .dropdown-menu {
        display: block !important;
    }
    
    /* Consistent mobile dropdown styling */
    .dropdown-menu .dropdown-item,
    .dropdown-menu a,
    .dropdown-menu li a {
        color: #ffffff !important;
        background: transparent !important;
        padding: 12px 25px !important;
        font-size: 14px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu a:hover,
    .dropdown-menu li a:hover {
        background: #ffffff !important;
        color: #4d2a7a !important;
    }
    
    /* Mobile nested dropdowns */
    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        background: rgba(255,255,255,0.05) !important;
        margin-left: 20px !important;
    }
}

/* =============================================
   DESKTOP SPECIFIC STYLES
   ============================================= */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        justify-content: center !important;
    }
    
    /* Force horizontal menu */
    .navbar-nav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;
        display: flex !important;
    }
    
    .navbar-nav > li.nav-item {
        display: inline-block !important;
        float: none !important;
        white-space: nowrap;
    }
    
    /* Ensure dropdowns stack vertically on desktop */
    .dropdown-menu:not(.datepicker) { {
        display: none !important; /* Hidden by default */
        flex-direction: column !important;
    }
    
    .dropdown-menu li {
        display: block !important;
        width: 100% !important;
        float: none !important;
    }
    
    /* Show on hover */
    .navbar-nav .dropdown:hover > .dropdown-menu,
    .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
    }
    
    .navbar-toggle {
        display: none;
    }
}

/* =============================================
   HEADER & LOGO STYLES
   ============================================= */

#adress {
    padding: 5px 30px 0px;
    text-align: left;
}

#adress p {
    color: #4d4d8d;
    line-height: 15px;
    margin: 0 0 7px;
}

#logo {
    padding: 5px 0 0px;
}

.adress {
    padding-top: 0px;
}

.top-header {
    padding: 15px 0 5px;
    background: #fff;
}

#logoimg {
    max-width: 100%;
    height: auto;
}

/* =============================================
   FOOTER STYLES
   ============================================= */

.footer {
    margin: 10px 0 0 0;
    text-align: center;
}

.footer h3 {
    padding: 10px 0px 20px;
    color: #4d4d8d;
}

.footer .footer-content {
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 45%;
    padding-top: 15px;
}

.footer .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    float: none;
    padding-top: 20px;
    background: transparent !important;
    flex-direction: column !important;
}

.footer .navbar-nav > li {
    float: none;
    text-align: center;
    margin: 5px 0;
}

.footer .navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #333 !important;
    background: transparent !important;
}

.content_footer.row {
    border-top: solid 1px #ccc;
}

.footer .soc_icons_box {
    /* display: none; */
}

.footer .copyrights p {
    margin: 5px 0 0;
}

/* =============================================
   PAGINATION STYLES
   ============================================= */

.pagination {
    display: flex !important;
    justify-content: left !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 20px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    flex-direction: unset !important;
}

.pagination .page-item {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
}

.pagination .page-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    min-width: 40px !important;
    height: 40px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    border: 1px solid #dee2e6 !important;
    background-color: #ffffff !important;
    color: #007bff !important;
}

/* Remove borders from navigation arrows only */
.pagination .page-item:first-child .page-link,
.pagination .page-item:nth-child(2) .page-link,
.pagination .page-item:nth-last-child(2) .page-link,
.pagination .page-item:last-child .page-link {
    border: none !important;
    background: transparent !important;
    color: #6c757d !important;
}

/* Number pages */
.pagination .page-item:nth-child(3) .page-link,
.pagination .page-item:nth-child(4) .page-link, 
.pagination .page-item:nth-child(5) .page-link {
    border: 1px solid #dee2e6 !important;
    background: #ffffff !important;
    color: #007bff !important;
}

/* Active Page */
.pagination .page-item.active .page-link {
    background: #007bff !important;
    color: #ffffff !important;
    border-color: #007bff !important;
}

/* Hover Effects */
.pagination .page-link:hover {
    background-color: #e9ecef !important;
    color: #0056b3 !important;
}

/* Arrow icons */
.pagination .icon-angle-left::before,
.pagination .icon-angle-right::before,
.pagination .icon-angle-double-left::before,
.pagination .icon-angle-double-right::before {
    font-size: 16px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.pagination .icon-angle-left::before { content: "←" !important; }
.pagination .icon-angle-right::before { content: "→" !important; }
.pagination .icon-angle-double-left::before { content: "«" !important; }
.pagination .icon-angle-double-right::before { content: "»" !important; }

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

@media screen and (max-width: 1199px) {
    .container {
        max-width: 98%;
        width: 100%;
    }
    
    .navbar-nav > li.nav-item > a.nav-link {
        padding: 15px 15px !important;
        font-size: 13px;
    }
}

@media screen and (max-width: 1023px) {
    .navbar-nav > li.nav-item > a.nav-link {
        padding: 15px 12px !important;
        font-size: 12px;
    }
    
    .navbar-collapse.collapse {
        padding: 0;
    }
    
    .menu-header .container {
        max-width: 99%;
    }
    
    #header .col-md-4 {
        float: left;
        width: 33.3%;
    }
}

@media screen and (max-width: 767px) {
    #header .col-md-4 {
        float: none;
        width: 100%;
    }
    
    .footer .footer-content {
        width: 100% !important;
        float: none !important;
        padding-top: 5px;
    }
    
    .footer_menu .navbar-toggle {
        display: none;
    }
    
    #footer-navbar-collapse {
        display: block !important;
    }
    
    /* Pagination mobile */
    .pagination {
        gap: 4px !important;
    }
    
    .pagination .page-link,
    .pagination .page-item:first-child,
    .pagination .page-item:nth-child(2),
    .pagination .page-item:nth-child(3),
    .pagination .page-item:nth-child(4),
    .pagination .page-item:nth-child(5),
    .pagination .page-item:nth-last-child(2),
    .pagination .page-item:last-child {
        min-width: 36px !important;
        height: 36px !important;
        width: 36px !important;
    }
}

/* =============================================
   COMPONENT SPECIFIC STYLES
   ============================================= */

.moduletable ul.menu li a {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background-color: transparent;
    font-family: Roboto Condensed;
    text-decoration: none;
}

.customfooter-info p {
    color: #4d4d8d;
}

body .footer .footer-content .moduletablefooter-info h3,
.footer-navbar-collapse .moduletable h3 {
    color: #4d4d8d;
}

.continent_search,
.country_search,
.select_date_option .daterange {
    color: #fff !important;
    font-weight: bold !important;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu .dropdown-submenu .dropdown-toggle::after {
    border: 0px none !important;
}

/*Flight page css */

.right_top_row {
  background: #e8e1ff;
  padding: 20px 25px;
  margin-bottom: 10px;
}

.right_top_row h3 {
  font-size: 18px;
  color: #4b4b4b;
  margin: 0 0 25px;
}

.checkbox_col {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  color: #4b4b4b;
  margin: 2px;
  line-height: 20px;
}

.checkbox_col input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox_col input:checked ~ .checkmark::after {
  display: block;
}

.checkbox_col .checkmark::after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox_col .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox_col input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkbox_col .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 3px;
}

.right_top_row_light {
  padding: 20px 25px;
  margin-bottom: 10px;
}

.right_top_row_light_in {
  padding: 0 0 35px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.right_top_row_light h3 {
  font-size: 18px;
  color: #4b4b4b;
  margin: 0 0 25px;
}

.row_light_form label {
  font-size: 16px;
  color: #555555;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 10px;
}

.row_light_feild {
  position: relative;
}

.row_light_feild select {
  border: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  width: 100%;
  height: 45px;
  font-size: 16px;
  color: #555;
  font-weight: 400;
  padding: 5px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

.select_icon {
  position: absolute;
  right: 14px;
  top: 11px;
  pointer-events: none;
}

.button_grop {
  padding-top: 30px;
  padding-bottom: 30px;
}

.right_top_row_light_bottom:nth-child(2n+1) {
  background: #fff;
  box-shadow: none;
  position: static;
}

.right_top_row_light_bottom {
  background: #fafafa;
  padding: 25px 30px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.list_images {
  width: 220px;
  height: 145px;
  float: left;
  background: #fff;
  box-shadow: 0 0 7px rgba(0,0,0,0.1);
  padding: 25px 10px;
  text-align: center;
}

.list_images img {
  max-height: 90px;
}

.list_detail {
  position: relative;
  margin-left: 250px;
  padding-right: 300px;
  min-height: 155px;
}

.list_detail h4 {
  position: relative;
  padding-left: 80px;
  margin: 0 0 25px;
  line-height: 26px;
}

.head_icon {
  position: absolute;
  left: 0;
  top: 50%;
  width: 65px;
  margin-top: -25px;
}

.list_detail a.head_lg {
  font-size: 30px;
  line-height: 50px;
  padding: 45px 0;
}

.list_detail h4 a {
  color: #01babd;
  font-size: 16px;
  display: block;
}

.list_detail p {
  color: #555;
  margin-bottom: 15px;
  margin-right: 70px;
  font-size: 16px;
}

.price_btn {
  font-size: 18px;
  color: #fff;
  text-align: center;
  background: #01babd;
  position: absolute;
  right: 10%;
  top: 50%;
  padding: 8px 62px;
  margin-top: -20px;
  width: 213px;
}

.anfrage_btn {
  font-size: 18px;
  color: #fff;
  background: #01babd;
  position: absolute;
  right: 10%;
  top: 82%;
  padding: 8px 35px;
  width: 213px;
  margin-top: -20px;
  text-align: center;
}

.row_light_bottom_form {
  background: #f6f6f6;
  padding: 30px;
}

/* FIXED: Row light bottom form labels - INLINE STYLE */
.row_light_bottom_form .row > div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.row_light_bottom_form .row > div > label:not(.checkbox_col) {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 15px;
  font-size: 16px;
  color: #555555;
  font-weight: 600;
  line-height: 24px;
  min-width: 120px;
  white-space: nowrap;
}

/* FIXED: Flight text label specifically */
.row_light_bottom_form .flight_text {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 15px;
  font-size: 16px;
  color: #555555;
  font-weight: 600;
  line-height: 24px;
  min-width: 120px;
  white-space: nowrap;
}

/* FIXED: Row light field adjustments for inline layout */
.row_light_bottom_form .row_light_feild {
  flex: 1;
  margin-bottom: 0;
}

.row_light_bottom_form .row_light_feild select {
  width: 100%;
}

/* FIXED: Ensure checkbox label stays properly styled */
.row_light_bottom_form .checkbox_col {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #4b4b4b;
  margin: 0;
  line-height: 20px;
  display: flex;
  align-items: center;
  margin-top: 0;
}

/* FIXED: Travel period display for inline layout */
.row_light_bottom_form .travel_period_2 p {
  background: #fff;
  padding: 10px 15px;
  margin: 0;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  min-height: 45px;
  display: flex;
  align-items: center;
  color: #555;
  border-radius: 0;
  flex: 1;
}

/* Special styling for travel period column */
.row_light_bottom_form .row > div:has(.travel_period_2) {
  display: flex;
  align-items: center;
}

.row_light_bottom_form .row > div:has(.travel_period_2) label {
  min-width: 180px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .row_light_bottom_form .row > div {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .row_light_bottom_form .row > div > label:not(.checkbox_col),
  .row_light_bottom_form .flight_text {
    margin-bottom: 8px;
    margin-right: 0;
    min-width: auto;
  }
  
  .row_light_bottom_form .row_light_feild {
    width: 100%;
  }
}

.row_light_bottom_form_next {
  background: #f6f6f6;
  padding: 0 0 30px;
}

.row_light_bottom_form_next thead {
  background: #68599a;
  color: #fff;
}

.row_light_bottom_form_next tbody tr:first-child td {
  padding-top: 20px !important;
}

@media (min-width: 1520px) {
  .row_light_bottom_form .row_light_feild {
    margin-left: 0 !important;
    margin-bottom: 20px;
  }
}

.row_light_bottom_form label.checkbox_col .checkmark {
  left: 0;
  right: 0;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

.calender_icon {
  position: absolute;
  cursor: pointer;
  left: 14px;
  top: 9px;
}

.row_light_feild input[type="text"].fill_date {
  padding-left: 45px;
}

/* Table Styling for Airport Selection */
.row_light_bottom_form_next .table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.row_light_bottom_form_next .table th {
    background: #68599a !important;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    border: none;
}

.row_light_bottom_form_next .table td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
    background: #fff;
}

/* Radio Button Styling */
.row_light_bottom_form_next .radio_btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    margin: 0;
}

.row_light_bottom_form_next .radio_btn input[type="radio"] {
    margin-right: 10px;
}

/* Traveler Types Styling */
.row_light_bottom_form_next .traveler-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.row_light_bottom_form_next .traveler-row {
    padding: 8px 0;
}

.row_light_bottom_form_next .traveler-label {
    font-weight: 500;
    display: block;
}

/* Price Column Styling */
.row_light_bottom_form_next .price-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.row_light_bottom_form_next .price-row {
    padding: 8px 0;
}

.row_light_bottom_form_next .price-amount {
    font-weight: bold;
    color: #28a745;
    display: block;
}

.row_light_bottom_form_next .price-note {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
    display: block;
    line-height: 1.4;
}

/* Total Price Styling */
.row_light_bottom_form_next .include-tax1 td {
    padding: 20px 15px;
    background: #e9ecef !important;
    border-bottom: none;
}

/* Button Styling */
.row_light_bottom_form_next .table_btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.row_light_bottom_form_next .submit-form {
    background: #007cba;
    color: white;
}

.row_light_bottom_form_next .btn_gray {
    background: #6c757d;
    color: white;
}

/* Checkmark styling for radio buttons */
.row_light_bottom_form_next .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
}

.row_light_bottom_form_next .radio_btn input[type="radio"]:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

.row_light_bottom_form_next .radio_btn input[type="radio"]:checked ~ .checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Header styling */
.row_light_bottom_form_next h4 {
    margin: 20px 0 10px 0;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row_light_bottom_form_next .table-responsive {
        overflow-x: auto;
    }
    
    .row_light_bottom_form_next .traveler-types,
    .row_light_bottom_form_next .price-column {
        gap: 8px;
    }
    
    .row_light_bottom_form_next .traveler-row,
    .row_light_bottom_form_next .price-row {
        padding: 5px 0;
    }
    
    .row_light_bottom_form_next .table th,
    .row_light_bottom_form_next .table td {
        padding: 10px 8px;
    }
}

/* Force columns to display side-by-side */
.user-inputs-html .clearfix {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px;
    margin-right: -15px;
}

.user-inputs-html .col-sm-6,
.user-inputs-html .col-md-6,
.user-inputs-html .col-lg-5 {
    float: none !important;
    display: block !important;
    flex: 0 0 auto !important;
    width: 50% !important;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure form controls take full width */
.user-inputs-html .form-control {
    width: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .user-inputs-html .col-sm-6,
    .user-inputs-html .col-md-6,
    .user-inputs-html .col-lg-5 {
        width: 100% !important;
        margin-bottom: 15px;
    }
}

.user-info-layout label {
  font-weight: bold !important;
  color: #4d4d8d;
}

.login-card .btn-secondary {
    color: #ffffff;
}
