* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: text;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Consolas', 'Courier New', monospace;
    overflow: hidden;
}

/* --- TOP HEADER --- */
.global-top-header {
    height: 40px;
    background-color: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}
.top-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 50%;
    padding-left: 20px;
    font-weight: 500;
}
.logo-icon {
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}
.top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    flex-grow: 1;
}
.top-header-letters {
    display: flex;
    gap: 6px;
    padding-left: 130px;
}
.workspace-btn {
    font-size: 14px;
    font-weight: 500;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.workspace-btn.active {
    background-color: #ffffff;
    color: #000000;
}
.top-header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding-right: 75px;
}
.dropdown-mock {
    background-color: #5ea3d6;
    color: #fff;
    padding: 2px 8px;
    font-size: 11px;
    cursor: pointer;
    border: 1px solid #4a8cbf;
}
.on-btn {
    border: 1px solid #4a6fa5;
    padding: 2px 6px;
    font-size: 11px;
    color: #5ea3d6;
    cursor: pointer;
}
.status-text {
    font-size: 11px;
    color: #ffffff;
}

/* --- RIGHT PANEL MENUS --- */
.right-panel-menus {
    display: flex;
    gap: 15px;
    background-color: #e5e5e5;
    padding: 5px 15px;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.menu-word {
    color: #745e45;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
}
.menu-word:hover {
    color: #4a3b2b;
}

.main-content-wrapper {
    height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

.terminal-container {
    height: 100%;
    display: flex;
}

@media (max-width: 768px) {
    .terminal-container {
        flex-direction: column;
    }
}

.left-panel,
.right-panel {
    background: #5a5a5a;
    padding: 0;
    position: relative;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.left-panel-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    color: #ffffff;
}

@media (max-width: 768px) {

    .left-panel,
    .right-panel {
        padding: 12px;
    }
}

.left-panel {
    width: 50%;
}

@media (max-width: 768px) {
    .left-panel {
        width: 100%;
        height: 40vh;
    }
}

.left-footer {
    background: #cccccc;
    padding: 6px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #a0a0a0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.left-footer .btn-footer {
    background: none;
    color: #4E4E4E;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.left-footer .btn-footer:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.1);
}

.left-footer .btn-footer.btn-inactive,
.left-footer .btn-footer:disabled {
    color: #8c8c8c;
    opacity: 1;
    cursor: not-allowed;
}

.left-footer .btn {
    flex: 1;
    max-width: 40px;
    background: none;
    color: #555;
    border: none;
    padding: 4px;
    border-radius: 4px;
}
.left-footer .btn:hover:not(:disabled) {
    background-color: #fff;
    color: #000;
}

.btn-text-icon {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.text-icon-label {
    font-size: 14px;
    font-weight: 600;
    color: #8c8c8c;
    letter-spacing: -1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.fs-badge {
    font-size: 11px;
    font-weight: 700;
    color: #7a7a7a;
    background: transparent;
    border: 2px solid #8c8c8c;
    border-radius: 3px;
    padding: 1px 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: inline-block;
}
.btn-fs-badge {
    padding: 3px 2px !important;
}


.divider {
    width: 7px;
    background: #fff;
    cursor: col-resize;
}

/* Right Sidebar Styles */
.right-sidebar {
    position: absolute;
    top: 65px;
    right: 0;
    width: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #e5e5e5;
    padding: 12px 8px;
    z-index: 10;
    box-shadow: -1px 0 5px rgba(0,0,0,0.1);
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    margin-bottom: 70px;
}

.sidebar-bottom-btn {
    background-color: #d1d1d1;
    color: #748da6;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 6px 0;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-bottom-btn:hover {
    background-color: #c4c4c4;
}

.tq-group {
    background: transparent;
    padding: 0;
}
.tq-group:hover {
    background: transparent;
}
.tq-text {
    background-color: #d1d1d1;
    color: #748da6;
    padding: 6px 4px;
    flex: 1;
}
.tq-badge {
    background-color: #f26d21;
    color: #fff;
    padding: 6px 8px;
    margin-left: 2px;
}

.right-sidebar .btn {
    cursor: pointer;
    margin-bottom: 8px;
    background: none;
    border: none;
    padding: 6px;
    transition: background-color 0.2s;
}

.right-sidebar .btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.right-sidebar .btn-hash {
    border: 2px solid #4E4E4E;
    font-size: 18px;
    padding: 4px;
    width: 36px;
    height: 36px;
    color: #4E4E4E;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-sidebar .btn-mp {
    background-color: #4E4E4E;
    font-size: 13px;
    padding: 4px;
    width: 36px;
    height: 36px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-sidebar .btn-sb {
    font-size: 20px;
    padding: 4px;
    width: 36px;
    height: 36px;
    color: #4E4E4E;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-sidebar .btn-history {
    font-size: 20px;
    padding: 4px;
    width: 36px;
    height: 36px;
    color: #4E4E4E;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Panel Adjustments */
.right-panel {
    width: 70%;
    display: flex;
    flex-direction: column;
    /* border-left: 2px solid #1a1a1a; */
    position: relative;
    height: 100%;
    padding: 0; /* Remove padding to let the white wrapper show */
    background-color: #e5e5e5; /* The border color around the terminal */
}

.right-panel-header {
    display: flex;
    background: #e5e5e5;
    height: 35px;
    align-items: flex-end;
    padding: 0 10px 0 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-bottom: none;
}

.active-tab {
    background: #5a5a5a;
    color: #fff;
    padding: 6px 70px 6px 10px;
    font-size: 13px;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    bottom: -1px; /* Overlap any tiny gap */
}

.add-tab {
    color: #a0a0a0;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
}
.add-tab:hover {
    color: #000;
}

.terminal-box-wrapper {
    flex-grow: 1;
    flex-shrink: 1;
    min-height: 0;
    background: #5a5a5a;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-right: 60px;
}

.terminal-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    min-height: 0;
    background: #5a5a5a;
    padding: 0 0 0 10px;
}

@media (max-width: 768px) {
    .right-panel {
        width: 100%;
        height: 60vh;
        border-right: none;
        border-top: 5px solid #444;
    }
}

.input-terminal {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: scroll;
}

.input-bar {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #5a5a5a;
    z-index: 10;
    flex-shrink: 0;
    min-height: 24px;
    padding: 2px 0;
}

.input-bar span {
    color: white;
    margin-right: 5px;
    font-weight: bold;
}

.input-cursor {
    border: none;
    background: transparent;
    color: #ffffff;
    font: inherit;
    width: 100%;
    min-width: 0;
    outline: none;
    caret-color: #ffd700;
}

.terminal-window {
    flex-grow: 1;
    margin-top: 0;
    background: #5a5a5a;
    overflow-y: visible;
}

.history-panel {
    position: absolute;
    top: 220px;
    right: 60px;
    width: 260px;
    max-height: 60vh;
    background-color: #f5f5f5;
    color: #000;
    padding: 0;
    overflow: hidden;
    z-index: 9999;
    display: none;
    border: 1px solid #aaa;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
}

.history-panel.show {
    display: block;
}

.history-panel h6 {
    margin: 0;
    font-size: 14px;
    padding: 12px 15px;
    background: #c0c0c0;
    border-bottom: 1px solid #999;
    font-weight: 600;
}

.history-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(70vh - 50px);
    overflow-y: auto;
}

.history-panel li {
    padding: 10px 15px;
    font-family: monospace;
    cursor: pointer;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.2s;
}

.history-panel li:hover {
    background-color: #e0e0e0;
}

.history-panel li:last-child {
    border-bottom: none;
}

.cursor-pointer {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.text-success {
    color: #00ff00 !important;
}

.text-info {
    color: #00ffff !important;
}

.text-white {
    color: #ffffff !important;
}

.text-danger {
    color: #ff0000 !important;
}
.book-container {
  max-width: 92%;
}

@media (max-width: 768px) {
  .book-container {
    max-width: 95%;
  }
}

.book-container-header p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-card h5,
.pricing-card h6 {
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.4;
}

.single_book_data {
  margin-bottom: 20px;
}

.total-amount {
  color: #00ff00;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.flight-info {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.5;
}

.flight-info p {
  margin-bottom: 5px;
  line-height: 1.5;
}

.flight-info-text.tooltip_data {
  color: #00d9ff;
}

.segment_data {
  margin-top: 4px;
}

.segment_data p {
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 768px) {
  .segment_data p {
    font-size: 13px;
    flex-wrap: wrap;
  }
}

.tax_fare_details_btn,
.book_btn,
.fareRulesBtn {
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.tax_fare_details_btn:hover,
.book_btn:hover,
.fareRulesBtn:hover {
  opacity: 0.8;
}

.book_btn,
.fareRulesBtn {
  color: #00ff00;
  font-weight: 600;
}

.tax_fare_details_btn {
  color: #00d9ff;
  font-weight: 600;
}

.rules_details p {
  padding: 0 10px 0 0;
}

.rules_details .table {
  width: 50%;
}

@media (max-width: 768px) {
  .rules_details .table {
    width: 100%;
  }
}

.rules_details .table > :not(caption) > * {
  background: none;
  color: #ccc;
  border: none;
  padding: 0;
}

.pnr_no,
.pnr-info-text.pnr_flight_class {
  color: #28a745;
}

.pnr-info-text.flight_number,
.pnr-info-text.pnr_departure_city,
.pnr-info-text.pnr_aircraft_type,
.pnr-info-text.pnr_booking_status span {
  color: #3d9cdb;
}

.pnr_component_flight_details {
  background: #848484;
  padding: 10px 0 5px 0;
}

.pnr_component_flight_details .details {
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.5;
}

.pnr_component_flight_details .pnr_divider {
  border: 1px solid #4e4e4e;
}

.pnr_component_flight_details .details p {
  margin: 0;
}

.sold_segments {
  width: 85%;
}

.sold_segments p {
  margin-bottom: 0;
}

.pnr_buttons {
  margin-top: 25px;
}

.pnr_buttons .pnr_btn {
  background-color: #848484;
  padding: 4px 10px;
  color: #fff;
}

#pnrDetailsCollapse {
  margin-top: 10px;
}

#exist_text_content {
  margin-top: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(10px);
}

#exist_text_content.show-content {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

/* #exist_text_content > div {
  padding: 8px 0;
} */

#exist_text_content > div:last-child {
  border-bottom: none;
}

#exist_text_content p {
  display: inline-block;
  font-size: 15px;
  margin: 0px;
  line-height: 1.5;
}

#exist_text_content .pnr_btn {
  color: #28a745;
  line-height: 0;
}

.pnr_display {
  display: none;
}

#pnrNameData {
  color: #28a745;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

#pnr_name_command,
#agent_name_command,
#ticketing_command {
  margin-bottom: 0px;
}

.fare_quote_summary {
  font-size: 16px;
  line-height: 1.5;
}

.green-text {
  color: #28a745;
}

.si_heading {
  font-weight: bold;
  /* color: #00ff66; */
  margin-top: 10px;
}
.si_subheading {
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}
.si_segment p {
  margin: 0;
}
.ssr_pax_number {
  margin-left: 20px !important;
}
.si_segment,
.si_ssr {
  font-family: monospace;
  padding: 8px 10px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.si_ssr p {
  margin: 0;
}
.si_ssr p strong {
  margin: 0;
}
.si_passenger {
  margin-left: 20px;
  color: #ddd;
  line-height: 1.5;
}
.si_footer {
  margin-top: 10px;
  font-weight: bold;
  /* color: #ff4444; */
}


.av-wrapper {
  width: 85%;
}

@media (max-width: 1024px) {
  .av-wrapper {
    width: 95%;
  }
}

.av-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  padding-bottom: 12px;
}

@media (max-width: 768px) {
  .av-header {
    flex-direction: column;
    gap: 8px;
  }
}

.av-header span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .av-header span {
    font-size: 16px;
  }
}

.av-item {
  padding: 12px 0;
  margin-bottom: 8px;
}

.av-row {
  display: flex;
  gap: 25px;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .av-row {
    gap: 15px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .av-row {
    gap: 10px;
    font-size: 13px;
    flex-wrap: wrap;
  }
}

.col-highlight {
  color: #00d9ff;
}

.flight-text {
  color: #00d9ff;
}

.class-text {
  color: #98ff98;
}

.connection {
  margin: 4px 35px 0;
  color: #98ff98;
  font-size: 15px;
  line-height: 1.4;
}

.class-text .cls {
  margin-right: 6px;
  padding: 2px 4px;
  font-family: monospace;
}

.class-text .active {
  color: #00ff00;
  cursor: pointer;
  font-weight: 600;
}

.class-text .inactive {
  color: #fdfdfd;
  opacity: 0.5;
}

/* Blue Filter Bar Styling */
.av-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4a90e2;
    border-radius: 6px;
    padding: 6px 12px;
    gap: 12px;
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 100;
}

@media (max-width: 1024px) {
    .av-filter-bar {
        right: 70px;
    }
}

@media (max-width: 768px) {
    .av-filter-bar {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
    }
}

.av-filter-left {
  flex: 0 0 auto;
}

.av-filter-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 768px) {
  .av-filter-right {
    gap: 6px;
  }
}

.av-dropdown {
  background-color: #4a90e2;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 6px 8px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: monospace;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23ffffff%27 d=%27M6 3L1 8h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  min-width: 70px;
}

.av-dropdown:hover {
  background-color: #3a7bc8;
}

.av-dropdown:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.av-dropdown option {
  background-color: #ffffff;
  color: #000000;
  padding: 8px;
}

.av-date-container {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
}

.av-date-prev,
.av-date-current,
.av-date-next {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: monospace;
  color: #ffffff;
}

@media (max-width: 768px) {
  .av-date-prev,
  .av-date-current,
  .av-date-next {
    padding: 6px 8px;
    font-size: 12px;
  }
}

.av-date-prev,
.av-date-next {
  background-color: #2a6bb8;
}

.av-date-current {
  background-color: #4a90e2;
  padding: 6px;
}

.av-calendar-btn {
  background-color: #4a90e2;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.av-calendar-btn:hover {
  background-color: #3a7bc8;
}

.av-calendar-btn:active {
  background-color: #2a6bb8;
}

.av-calendar-btn svg {
  width: 16px;
  height: 16px;
}

.no-more-flights {
  margin-bottom: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #fff;
}

.hidecityName {
  margin-left: 24px;
}

/* src/css/refund.css */
.refund-output {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.2;
}

.refund-output p {
    margin-bottom: 2px;
}

.dot-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    margin: 0;
    outline: none;
    display: inline-block;
    caret-color: #fff;
    width: auto;
    text-transform: uppercase;
}

.dot-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.dot-input::placeholder {
    color: #fff !important;
    opacity: 1 !important;
}

.dot-input::-webkit-input-placeholder {
    color: #fff !important;
    opacity: 1 !important;
}

.dot-input::-moz-placeholder {
    color: #fff !important;
    opacity: 1 !important;
}

.dot-input:-ms-input-placeholder {
    color: #fff !important;
    opacity: 1 !important;
}

.dot-input::-ms-input-placeholder {
    color: #fff !important;
    opacity: 1 !important;
}

.field-dot {
    color: #fff;
    font-weight: bold;
}

.border-dotted-bottom {
    border-bottom: 1px dotted #888;
}

.tax-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

.tax-row {
    display: flex;
    gap: 10px;
}

.tax-item {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 25ch;
}


/*# sourceMappingURL=styles.css.map*/