@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
.customer-profile-header {
  background: linear-gradient(135deg, #071d38, #102f55);
  color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(199, 167, 108, 0.45);
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.12);
}

.customer-profile-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.customer-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #c7a76c;
  color: #071d38;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
}

.customer-profile-header h2 {
  margin: 0;
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
}

.customer-profile-subtitle {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.customer-section-title {
  margin: 24px 0 12px;
  color: #071d38;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}
.customer-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
}
@media (max-width: 1200px) {
  .customer-timeline {
    grid-template-columns: 1fr;
  }
}

.customer-timeline .saved-quote-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  padding: 14px;
  gap: 16px;
  align-items: start;
}
.customer-timeline .saved-quote-image-column {
  display: flex;
  flex-direction: column;
}

.customer-timeline .saved-quote-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.customer-timeline .saved-quote-actions button {
  width: 100%;
  margin-top: 0 !important;
}

.customer-timeline .saved-quote-image {
  width: 100%;
  height: 220px;
  min-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(199, 167, 108, 0.65);
}

.customer-timeline .saved-quote-content {
  padding: 20px;
}

.customer-timeline .saved-quote-content h4 {
  margin-top: 10px;
  margin-bottom: 6px;

  min-height: 48px;

  display: flex;
  align-items: flex-start;

  line-height: 1.2;
}

.customer-timeline .saved-quote-meta {
  margin-top: 14px;
}

.customer-timeline small {
  display: block;
  margin-top: 14px;
  color: #777;
}

@media (max-width: 700px) {
  .customer-timeline .saved-quote-card {
    grid-template-columns: 1fr;
  }

  .customer-timeline .saved-quote-image {
    min-height: 180px;
  }
}
.holiday-tool {
    max-width: 1320px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }

  .holiday-tool textarea {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
}
#holidayInput,
#flightInput {
  height: 150px;
  margin-bottom: 18px;
}

#field-description,
#field-pdf-highlights,
#field-html-description,
#field-html-highlights {
  height: 110px;
  min-height: 110px;
}
  .holiday-tool button {
  margin-top: 15px;
  background: #071d38;
  color: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.2s ease;
}

.holiday-tool button:hover {
  background: #c7a76c;
  color: #071d38;
}

  .holiday-results {
    margin-top: 25px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
  }

  .field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }

  .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

  .field label {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .field input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-size: 14px;
  }

  .hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }

  .hotel-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }

  

  .holiday-quote-template {
  width: 794px;
  min-height: 1123px;
  background: #fff;
  margin: 30px auto;
  font-family: Arial, sans-serif;
  color: #0b2341;
  border: 1px solid #ddd;
}


  .quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #c7a76c;
}

  .quote-header h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 2px;
  }

  .quote-header p {
    margin: 3px 0;
  }
  
  .quote-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 12px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.95;
}

.quote-title h2 span {
  display: block;
}

.quote-title h2 span:last-child {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 6px;
}

.quote-title h3 {
  position: relative;
  padding-top: 16px;
}

.quote-title h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 2px;
  background: #c7a76c;
}

  .quote-title h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #ffffff;
}
 .quote-stars {
  color: #c7a76c;
  font-size: 13px;
  letter-spacing: 2px;
  margin: -6px 0 10px;
}

.quote-stars i {
  color: #c7a76c !important;
  margin-right: 2px;
}

  .quote-title p {
  margin: 8px 0;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.quote-title i {
  color: #c7a76c;
  margin-right: 6px;
}
  
  .quote-contact {
  text-align: left;
  font-size: 12px;
}

.quote-contact p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  margin: 4px 0;
}

.quote-contact i {
  color: #c7a76c !important;
  width: 14px;
  min-width: 14px;
}

  .quote-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #c7a76c;
  color: #f8f3ea;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  max-width: 60%;
}
.quote-strip-wrap {
  padding-left: 0px;
  margin-top: -1px;
}

  .quote-strip span,
.quote-strip .strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
color: #f8f3ea !important;
}
.strip-item i {
  color: #f8f3ea !important;
}

  .quote-section {
    padding: 14px 28px;
  }

  .quote-section h3,
  .quote-grid h3 {
    text-transform: uppercase;
    margin-top: 0;
  }

  .quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 28px 14px;
  }

  .quote-section .quote-grid {
    padding: 0;
  }

  .quote-grid > div {
  background: #f3f3f3;
  padding: 12px;
  font-size: 11px;
}

  .quote-grid ul {
    padding-left: 18px;
    margin: 0;
  }

  .quote-grid li {
    margin-bottom: 8px;
  }

  .quote-icon-line {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin: 5px 0;
  }

  .quote-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #071d38;
  color: #fff;
  font-size: 12px;
}

  .quote-price-box {
  margin: 0 28px 14px;
  border: 2px solid #b8945f;
  text-align: center;
  padding: 12px;
}

  .quote-price-box h3 {
  background: #b8945f;
  color: #fff;
  margin: -18px -18px 18px;
  padding: 10px;
  text-transform: uppercase;
}

  .quote-price-box h2 {
    font-size: 28px;
    margin: 10px 0;
  }

  .quote-footer {
  background: #071d38;
  color: #fff;
  padding: 18px 28px;
  text-align: center;
}

  .quote-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }

  .quote-footer-text {
    text-align: center;
    flex: 1;
  }

  .quote-reference {
    font-size: 10px;
    opacity: 0.65;
    white-space: nowrap;
  }
  .quote-atol {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid #d4b07a;
}

.atol-logo {
  width: 35px;
  height: auto;
  object-fit: contain;
}

.quote-atol-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 10px;
}

.quote-atol-text strong {
  color: #0b2341;
  font-size: 11px;
}

.quote-atol-text span {
  color: #666;
}
/* FINAL HERO FIX */

.quote-hero {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  height: 220px !important;
  max-height: 220px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.quote-title {
  background: #071d38 !important;
  color: #ffffff !important;
  height: 220px !important;
  max-height: 220px !important;
  min-height: 220px !important;
  box-sizing: border-box !important;
  padding: 18px 24px !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.quote-title h2,
.quote-title h3,
.quote-title p {
  color: #ffffff !important;
}

.quote-title i {
  color: #c7a76c !important;
  margin-right: 6px;
}


.quote-hero-image-wrap {
  height: 220px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  line-height: 0 !important;
}

.quote-hero-image-wrap img {
  width: 100% !important;
  height: 270px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.quote-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
  display: block;
}

  @media print {
    body * {
      visibility: hidden;
    }

    #holidayQuoteTemplate,
    #holidayQuoteTemplate * {
      visibility: visible;
    }

    #holidayQuoteTemplate {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      border: none;
      margin: 0;
    }
  }
  .quote-overview-gallery {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 14px;
  padding: 14px 16px 16px;
  align-items: start;
}

.quote-overview-text h3 {
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #071d38;
}

.quote-overview-text p {
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 0;
  color: #444;
}

.quote-gallery-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.quote-gallery-small img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  display: block;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #071d38;
}

.strip-item svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #071d38;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quote-contact i,
.quote-contact svg {
  color: #c7a76c !important;
  fill: #c7a76c !important;
}
.quote-brochure-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 8px;
  padding: 0 17px 8px;

  align-items: stretch;
}

.quote-brochure-section > div {
  height: 100%;
}

.quote-brochure-card {
  background: #f8f5ef;
  border: 1px solid rgba(199, 167, 108, 0.45);
  padding: 8px 10px;
  font-size: 10px;
  position: relative;

  min-height: 205px;
  height: 205px;

  box-sizing: border-box;
}



.quote-brochure-card h3,
.quote-flight-strip h3 {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #071d38;
}

.quote-brochure-card ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
} 

.quote-brochure-card li {
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 2px;
  align-items: start;
  line-height: 1.2;
}

.quote-brochure-card li i,
.quote-flight-strip i {
  width: 18px;
  min-width: 18px;
  text-align: center;
  color: #c7a76c;
  margin-top: 1px;
}
.quote-price-summary {
  background: #071d38;
  color: #fff;
  border: 1px solid #c7a76c;
  text-align: center;
  display: flex;
flex-direction: column;
justify-content: flex-start;
}
.quote-balance-due {
  margin-top: auto !important;
  padding-top: 10px;
}

.quote-price-summary h3 {
  color: #fff;
}

.quote-price-summary p {
  margin: 3px 0;
  font-size: 10.5px;
}

.quote-room-name {
  color: #d8c08a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.quote-final-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1;
  color: #c7a76c;
  margin-bottom: 10px;
  font-weight: 700;
}

.quote-flight-strip {
  margin: 0 28px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-flight-strip > div {
  border-left: 4px solid #c7a76c;
  background: #f3f3f3;
  padding: 10px 12px;
  font-size: 10.5px;
}

.quote-flight-strip p {
  margin: 3px 0;
  color: #333;
}

.quote-highlight-icon {
  color: #c7a76c !important;
  font-size: 11px;
  margin-top: 1px;
}
.quote-brochure-card li i,
.quote-flight-strip i {
  color: #c7a76c;
  margin-top: 1px;
}

.quote-brochure-feature li {
  grid-template-columns: 24px 1fr;
}

.quote-brochure-feature li i {
  width: 24px;
  min-width: 24px;
  text-align: center;
  transform: scale(1.25);
  transform-origin: center;
}
.quote-brochure-feature li svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  color: #9e6c10;
}

.quote-brochure-feature li {
  grid-template-columns: 22px 1fr;
}
.quote-strip {
  gap: 10px;
}

.strip-item {
  position: relative;
  padding-right: 12px;
}

.strip-item:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  color: rgba(255,255,255,0.7);
}
.quote-price-label {
  color: #d8c08a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  margin: 0 0 6px;
  margin-bottom: 2px;
}
.quote-flight-card {
  background: #f8f5ef;
  display: flex;
  flex-direction: column;
}

.quote-flight-mini {
  border-top: 1px solid rgba(199, 167, 108, 0.45);
  padding-top: 5px;
  margin-top: 5px;
}

.quote-flight-mini:first-of-type {
  margin-top: 0;
}

.quote-flight-mini h4 {
  margin: 0 0 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #071d38;
}

.quote-flight-mini p {
  margin: 1px 0;
  font-size: 9.5px;
  line-height: 1.2;
  color: #333;
}

.quote-price-image-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0px;
  padding: 0 16px 12px;
  align-items: stretch;
}

.quote-price-summary-wide {
  min-height: 110px;
  padding: 4px 12px 8px;
}

.quote-price-side-image {
  height: 110px;
  min-height: 100%;
  
box-sizing: border-box;
border: 1px solid #c7a76c;
}
.quote-price-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote-price-side-image {
  border-right: none;
}
.quote-footer {
  background: #ffffff;
  color: #ffffff;
  padding: 8px 0px 8px;
}

.quote-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 190px;
  gap: 18px;
  margin-bottom: 10px;
  align-items: stretch;
  height: 150px;
  max-height: 150px;
  background: #071d38;
  border-top: 1px solid #c7a76c;
  border-bottom: 1px solid #c7a76c;
overflow: hidden;
}
.quote-footer-top > * {
  height: 100%;
}

.quote-footer-column h3 {
  margin: 0 10px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d8c08a;
}

.quote-footer-column p {
  margin: 0 0 8px;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.quote-footer-column i {
  color: #c7a76c;
  width: 14px;
  text-align: center;
  margin-right: 5px;
}

.quote-footer-image {
  
  overflow: hidden;
}

.quote-footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-footer-bottom {
  margin-top: 20px;
  padding: 24px 28px 14px;
  border-top: 1px solid rgba(199,167,108,0.3);
  text-align: center;
  background: #ffffff;
  margin-left: -28px;
  margin-right: -28px;
  
}

.quote-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-footer-message {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.4px;
  color: #071d38;
  flex: 1;
  text-align: center;
  padding-left: 40px;
  line-height: 1.4;
overflow: visible;
}

.quote-footer-ref {
  margin: 0;
  font-size: 8px;
  letter-spacing: 0.8px;
  color: rgba(7,35,65,0.65);
  white-space: nowrap;
}

.quote-footer-bottom i {
  color: #c7a76c;
  margin-right: 5px;
}

.quote-footer-bottom span {
  color: #c7a76c;
  margin: 0 8px;
}

.quote-reference {
  margin-top: 12px !important;
  opacity: 0.7;
}
.quote-footer-column:first-child {
  background: #ffffff;
  padding: 10px;
  text-align: left;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  line-height: 0.9;
}

.quote-footer-image {
  height: 100%;
}

.quote-footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-footer-column:first-child p {
  color: #071d38;
}

.quote-footer-column:first-child h3 {
  color: #071d38;
}
.quote-important-info ul {
  margin: 0;
  padding-left: 16px;
}

.quote-important-info li {
  color: #071d38;
  font-size: 10px;
  line-height: 1.45;
  margin-bottom: 6px;
}


.quote-footer-booking {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  box-sizing: border-box;
}

.quote-booking-text {
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  margin-bottom: 18px;
}

.quote-booking-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.quote-booking-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 11px;
}

.quote-booking-contact i{
  color: #c7a76c !important;
  font-size: 12px;
  width: 14px;
  text-align: center;
}
.quote-booking-contact svg {
  color: #c7a76c !important;
  fill: #c7a76c !important;
}
.quote-footer-message {
  grid-column: 2;
  text-align: center;
}

.quote-footer-ref {
  grid-column: 3;
  justify-self: end;
}
.quote-footer-script {
  font-family: 'Dancing Script', cursive;
  font-size: 15px;
  font-weight: 600;
  color: #c7a76c;
}
.quote-footer-booking h3 {
  font-family: 'Dancing Script', cursive !important;

  font-size: 28px;

  line-height: 1.05;

  color: #d8c08a !important;

  text-transform: none;

  letter-spacing: 0.5px;

  margin: 0 0 12px;

  margin-top: -26px;

  font-weight: 600;
}
.quote-footer-heart {
  color: #966d22;
  margin: 0 10px;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}
.quote-gallery-item {
  position: relative;
}

.quote-gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(199, 167, 108, 0.92);
color: #071d38;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 0;
  text-align: center;
}

.quote-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.quote-select-btn {
  position: absolute;

  left: 8px;

  background: rgba(7, 29, 56, 0.88);

  color: #fff;

  border: none;

  border-radius: 999px;

  min-width: 44px;
  height: 22px;

  padding: 0 6px;

  cursor: pointer;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2px;

  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(4px);

  transition: all 0.2s ease;
}
.main-image-selected .main-btn {
  background: rgba(199, 167, 108, 0.96);
  color: #071d38;
}

.main-image-selected .main-btn,
.gallery1-selected .gallery1-btn,
.gallery2-selected .gallery2-btn,
.gallery3-selected .gallery3-btn,
.price-selected .price-btn,
.footer-selected .footer-btn {
  background: rgba(199, 167, 108, 0.96);
  color: #071d38;
}
.quote-select-btn:hover {
  transform: scale(1.06);
}

.quote-select-btn:hover {
  transform: scale(1.08);
}
.quote-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.quote-image-wrap img {
  transition: all 0.25s ease;
}

.main-image-selected img,
.gallery1-selected img,
.gallery2-selected img,
.gallery3-selected img,
.price-selected img,
.footer-selected img {
  opacity: 0.55;
  transform: scale(1.02);
}


.gallery1-selected .quote-select-btn,
.gallery2-selected .quote-select-btn,
.gallery3-selected .quote-select-btn,
.price-selected .quote-select-btn,
.footer-selected {
  opacity: 0.92;
}

.gallery1-selected button[style*="42px"] {
  background: #d4af37;
}

.gallery2-selected button[style*="76px"] {
  background: #4da6ff;
}

.gallery3-selected button[style*="110px"] {
  background: #5cb85c;
}

.price-selected button[style*="144px"] {
  background: #ff9800;
}

.footer-selected button[style*="178px"] {
  background: #e91e63;
}

.saved-quotes-section {
  margin-top: 25px;
}

.saved-quotes-section h3 {
  margin-bottom: 16px;
  color: #071d38;
  font-size: 22px;
}

.saved-quotes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.saved-quote-card {
  background: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.12);
}

.saved-quote-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .saved-quotes-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .saved-quotes-list {
    grid-template-columns: 1fr;
  }
}

.saved-quote-content {
  padding: 16px;
}

.saved-quote-content h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #071d38;
}

.saved-quote-hotel {
  margin: 0 0 4px;
  font-weight: bold;
  color: #071d38;
}

.saved-quote-destination {
  margin: 0 0 12px;
  color: #555;

  min-height: 38px;

  line-height: 1.35;
}

.saved-quote-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.saved-quote-meta span {
  background: #f8f5ef;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  color: #071d38;
}

.saved-quote-content small {
  display: block;
  margin-bottom: 12px;
  color: #777;
  font-size: 11px;
}

.saved-quote-card .load-quote-btn {
  width: 100%;
  background: #071d38;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  font-size: 14px;
}

.saved-quote-card .load-quote-btn:hover {
  background: #c7a76c;
  color: #071d38;
}
.saved-quote-card .duplicate-quote-btn {
  width: 100%;
  background: #c7a76c;
  color: #071d38;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.saved-quote-card .duplicate-quote-btn:hover {
  background: #b89350;
}
.saved-quote-card .delete-quote-btn,
.saved-quote-card .delete-customer-quote-btn {
  width: 100%;
  background: #f8d7da;
color: #842029;
border: 1px solid #e5aeb5;
  
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.saved-quote-card .delete-quote-btn:hover,
.saved-quote-card .delete-customer-quote-btn:hover {
  background: #f1bfc5;
}
.saved-quote-ref {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 8px !important;
  color: #888;
  letter-spacing: 0.5px;
}
.saved-quote-status {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.saved-quote-status-draft {
  background: #eee;
  color: #333;
}

.saved-quote-status-sent {
  background: #e8f1ff;
  color: #0753a3;
}
.saved-quote-status-accepted {
  background: #fff4d6;
  color: #9a6500;
}

.saved-quote-status-booked {
  background: #e8f7ed;
  color: #147a35;
}
.quick-status-accepted {
  background: #fff4d6 !important;
  color: #9a6500 !important;
}

.saved-quote-status-lost {
  background: #fdeaea;
  color: #a30000;
}
.field select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 7px;
  font-size: 14px;
  background: #fff;
}
.saved-quote-contact {
  margin: 4px 0;
  font-size: 13px;
  color: #666;
}
.saved-quotes-header {
  display: block;
  margin-bottom: 22px;
}

.saved-quotes-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #071d38;
  margin: 0 0 14px;
}

.saved-quotes-filters-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.backup-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.import-backup-label {
  margin-top: 0;
}


.saved-quote-search {
  width: 320px;
  max-width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
}
.saved-quote-status-filter {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-stat-card {
  background: #071d38;
  color: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.12);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dashboard-stat-card span {
  display: block;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: bold;
  margin-bottom: 2px;
  line-height: 1.1;
  text-align: center;
}
.dashboard-stat-revenue span {
  font-size: clamp(16px, 1.8vw, 24px);
}

.dashboard-stat-card p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  opacity: 0.9;
  line-height: 1.2;
}

.dashboard-stat-revenue {
  background: #c7a76c;
  color: #071d38;
}

@media (max-width: 900px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}
.upcoming-departures-panel {
  background: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.08);
}

.upcoming-departures-panel h3 {
  margin: 0 0 14px;
  color: #071d38;
}

.upcoming-departure-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.upcoming-departure-item:first-of-type {
  border-top: none;
}

.upcoming-departure-item strong {
  display: block;
  color: #071d38;
}

.upcoming-departure-item span {
  display: block;
  font-size: 13px;
  color: #666;
}

.upcoming-departure-item p {
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
  color: #c7a76c;
}

.no-upcoming-departures {
  margin: 0;
  color: #777;
}
.saved-quote-updated {
  margin: 4px 0 8px;
  font-size: 12px;
  color: #777;
}
.saved-quote-expiry {
  margin: 4px 0 8px;
  font-size: 12px;
  color: #a30000;
}
.saved-quote-expiry {
  display: inline-block;
  margin: 4px 0 8px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: bold;
}

.saved-quote-expiry-active {
  background: #e8f7ed;
  color: #147a35;
}

.saved-quote-expiry-today {
  background: #fff4d6;
  color: #9a6500;
}

.saved-quote-expiry-expired {
  background: #fdeaea;
  color: #a30000;
}

.saved-quote-expiry-none {
  background: #eee;
  color: #555;
}
.app-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.app-tab-btn {
  background: #f8f5ef !important;
  color: #071d38 !important;
  border: 1px solid rgba(199, 167, 108, 0.45) !important;
}

.app-tab-btn.active {
  background: #071d38 !important;
  color: #ffffff !important;
}

.app-tab-content {
  display: none;
}

.app-tab-content.active {
  display: block;
}
.app-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.app-tab-btn {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;

  background: #f8f5ef !important;
  color: #071d38 !important;

  border: 1px solid rgba(199, 167, 108, 0.45) !important;

  border-radius: 10px;
  padding: 12px 20px;
}

.app-tab-btn.active {
  background: #071d38 !important;
  color: #ffffff !important;
}

.saved-quotes-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #071d38;
  margin: 0 0 18px;
}
.dashboard-stats {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
.app-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}
.app-sidebar {
  background: #071d38;
  color: #fff;
  border-radius: 18px;
  padding: 20px;
  position: sticky;
  top: 20px;
}

.app-sidebar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin: 0 0 20px;
  color: #c7a76c;
}

.app-sidebar .app-tab-btn {
  width: 100%;
  display: block;
  margin: 0 0 10px;
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(199, 167, 108, 0.45) !important;
  text-align: left;
}

.app-sidebar .app-tab-btn.active {
  background: #c7a76c !important;
  color: #071d38 !important;
}

.app-main {
  min-width: 0;
  padding-right: 20px;
}

@media (max-width: 800px) {
  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
  }
}
.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.customer-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(199, 167, 108, 0.35);
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.08);
}

.customer-card h4 {
  margin: 0 0 12px;
  color: #071d38;
}

.customer-card p {
  margin: 6px 0;
  color: #444;
}

.customer-card small {
  display: block;
  margin-top: 12px;
  color: #888;
}
.customer-detail-page h2 {
  margin-bottom: 10px;
  color: #071d38;
}

.customer-detail-meta {
  background: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.35);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.06);
}

.customer-detail-meta p {
  margin: 8px 0;
  color: #444;
  font-size: 14px;
}

.customer-detail-meta strong {
  color: #071d38;
}

#backToCustomersBtn {
  margin-bottom: 18px;
}
.customer-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.customer-detail-stats .dashboard-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 95px;
  text-align: center;
}

.customer-detail-stats .dashboard-stat-card span {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 4px;
  line-height: 1;
}

.customer-detail-stats .dashboard-stat-card p {
  width: 100%;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 700px) {
  .customer-detail-stats {
    grid-template-columns: 1fr;
  }
}
.follow-up-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 9px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: bold;
  line-height: 1;

  white-space: nowrap;
}

.follow-up-overdue {
  background: #fdeaea;
  color: #a30000 !important;
}

.follow-up-today {
  background: #fff4d6;
  color: #9a6500 !important;
}

.follow-up-future {
  background: #e8f1ff;
  color: #0753a3 !important;
}

.follow-up-none {
  background: #eee;
  color: #555 !important;
}
.follow-ups-page .load-quote-btn,
.follow-ups-page .complete-follow-up-btn {
  width: 100%;
}
.customer-activity-timeline {
  position: relative;
  margin-top: 18px;
  margin-bottom: 28px;
  padding-left: 22px;
}

.customer-activity-timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(199, 167, 108, 0.45);
}

.customer-activity-item {
  position: relative;
  padding-bottom: 18px;
  padding-left: 18px;
}

.customer-activity-dot {
  position: absolute;
  left: -17px;
  top: 16px;

  width: 14px;
  height: 14px;

  border-radius: 50%;
  background: #c7a76c;
  border: 3px solid #fff;

  box-shadow: 0 0 0 1px rgba(199, 167, 108, 0.45);
}

.customer-activity-content {
  background: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.35);
  border-radius: 14px;
  padding: 14px 16px;

  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.06);
}

.customer-activity-text {
  margin: 0 0 6px;
  color: #071d38;
  font-weight: 600;
}

.customer-activity-content small {
  color: #777;
  font-size: 12px;
}
.backup-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.backup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #071d38;
  color: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 10px;

  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;

  white-space: nowrap;
}

.backup-btn:hover {
  background: #c7a76c;
  color: #071d38;
}

.import-backup-label {
  margin-top: 15px;
}
.customer-note-box {
  margin-bottom: 20px;
}

.customer-note-box textarea {
  width: 100%;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
  height: 48px;
  box-sizing: border-box;

  background: #ffffff;

  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.04);
}

.customer-note-box button {
  margin-top: 10px;
}
#improveContentBtn {
  background: #c7a76c;
  color: #071d38;
  border: 1px solid rgba(7, 29, 56, 0.25);
}

#improveContentBtn:hover {
  background: #071d38;
  color: #ffffff;
}
.quote-activity-timeline {
  margin-top: 16px;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.quote-activity-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-activity-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #c7a76c;
  margin-top: 5px;
}

.quote-activity-content p {
  margin: 0 0 3px;
  font-size: 13px;
  color: #071d38;
}

.quote-activity-content small {
  color: #777;
  font-size: 11px;
}
.loaded-quote-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #071d38;
  color: #fff;

  border-radius: 14px;
  padding: 16px 18px;

  margin-bottom: 20px;

  border: 1px solid rgba(199, 167, 108, 0.45);
}

.loaded-quote-banner strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.loaded-quote-banner p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

.loaded-quote-meta {
  text-align: right;
}

.loaded-quote-meta span {
  display: inline-block;

  background: #c7a76c;
  color: #071d38;

  padding: 5px 10px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.loaded-quote-meta small {
  display: block;
  margin-top: 6px;
  opacity: 0.75;
}
.back-to-saved-quotes-btn {
  display: block;
  margin-top: 10px !important;

  background: #ffffff !important;
  color: #071d38 !important;

  border: 1px solid rgba(199, 167, 108, 0.65) !important;
  border-radius: 999px;

  padding: 7px 12px !important;

  font-size: 11px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.back-to-saved-quotes-btn:hover {
  background: #c7a76c !important;
  color: #071d38 !important;
}
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading-row h2 {
  margin: 0;
}

.small-action-btn {
  padding: 8px 14px !important;
  font-size: 12px !important;
  margin-top: 0 !important;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading-row h2 {
  margin: 0;
}

.small-action-btn {
  padding: 8px 14px !important;
  font-size: 12px !important;
  margin-top: 0 !important;
}

.inline-extractor-box {
  background: #f8f5ef;
  border: 1px solid rgba(199, 167, 108, 0.35);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 22px;
}

.inline-extractor-box h3 {
  margin-top: 0;
  color: #071d38;
}

.inline-extractor-box textarea {
  margin-bottom: 14px;
}
.extractor-card-heading {
  margin-bottom: 16px;
}

.extractor-card-heading h2,
.extractor-card-heading h3 {
  margin: 0 0 8px;
  color: #071d38;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.extractor-card-heading p {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.tested-supplier-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.tested-supplier-row span {
  color: #777;
  font-size: 12px;
  font-weight: 600;
}

.tested-supplier-row strong {
  display: inline-flex;
  align-items: center;
  background: #f8f5ef;
  color: #071d38;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  letter-spacing: 0.2px;
}
.extractor-card {
  background: #ffffff;

  border: 1px solid rgba(199, 167, 108, 0.35);

  border-radius: 16px;

  padding: 18px;

  margin-top: 18px;
  margin-bottom: 22px;

  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.08);
}

.extractor-card h3 {
  margin-top: 0;
  margin-bottom: 10px;

  color: #071d38;

  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.extractor-card p {
  color: #555;
  margin-bottom: 16px;
}

.extractor-card textarea {
  margin-bottom: 14px;
}

.extractor-card-heading {
  margin-bottom: 18px;
}

.extractor-card-heading h2,
.extractor-card-heading h3 {
  margin: 0 0 10px;

  color: #071d38;

  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
}

.extractor-card-heading p {
  margin: 0 0 14px;

  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.tested-supplier-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tested-supplier-row span {
  color: #777;
  font-size: 12px;
  font-weight: 600;
}

.tested-supplier-row strong {
  background: #f8f5ef;

  border: 1px solid rgba(199, 167, 108, 0.45);

  border-radius: 999px;

  padding: 6px 10px;

  font-size: 11px;
  font-weight: 600;

  color: #071d38;
}

.primary-extract-btn {
  width: 100%;
  margin-top: 10px !important;

  padding: 14px 18px !important;

  font-size: 15px !important;
  font-weight: 700 !important;
}
.form-section-card {
  background: #ffffff;

  border: 1px solid rgba(199, 167, 108, 0.35);

  border-radius: 16px;

  padding: 22px;

  margin-bottom: 24px;

  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.08);
}

.form-section-card h2,
.form-section-card h3 {
  margin-top: 0;

  color: #071d38;

  font-family: 'Cormorant Garamond', serif;
}

.form-section-card hr {
  margin: 26px 0;
  border: none;
  border-top: 1px solid rgba(199, 167, 108, 0.25);
}
.quote-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.customer-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(199, 167, 108, 0.35);
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.08);
}

.customer-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.customer-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c7a76c;
  color: #071d38;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.customer-card h4 {
  margin: 0;
  color: #071d38;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.customer-card-subtitle {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.customer-card-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.customer-card-stats div {
  background: #f8f5ef;
  border: 1px solid rgba(199, 167, 108, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
}

.customer-card-stats strong {
  display: block;
  color: #071d38;
  font-size: 16px;
}

.customer-card-stats span {
  display: block;
  margin-top: 2px;
  color: #666;
  font-size: 12px;
}

.customer-card small {
  display: block;
  margin-top: 12px;
  color: #888;
}
#toggleLoadedImagesBtn {
  margin-bottom: 18px !important;
}
.quick-status-select {
  width: auto;

  min-width: 120px;

  margin: 8px 0 10px;

  padding: 6px 10px;

  border-radius: 999px;

  border: 1px solid rgba(199, 167, 108, 0.45);

  background: #ffffff;

  color: #071d38;

  font-size: 12px;
  font-weight: 600;

  display: inline-block;
}
.quick-save-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.quick-save-quote-btn {
  padding: 8px 14px !important;
  font-size: 12px !important;
  margin-top: 0 !important;

  background: #f8f5ef !important;
  color: #071d38 !important;

  border: 1px solid rgba(199, 167, 108, 0.45) !important;
}

.quick-save-quote-btn:hover {
  background: #071d38 !important;
  color: #ffffff !important;
}

.saved-quote-card .view-pdf-btn,
.saved-quote-card .view-html-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.saved-quote-card .view-pdf-btn {
  background: #c7a76c;
  color: #071d38;
}

.saved-quote-card .view-html-btn {
  background: #f8f5ef;
  color: #071d38;
  border: 1px solid rgba(199, 167, 108, 0.45);
}

.saved-quote-created-date {
  margin: 10px 0 0;
  font-size: 12px;
  color: #777;
  text-align: center;
}
.customer-detail-page .quote-activity-timeline {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 8px;
}

.customer-detail-page .saved-quote-card .view-pdf-btn,
.customer-detail-page .saved-quote-card .view-html-btn,
.customer-detail-page .saved-quote-card .delete-quote-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.customer-detail-page .saved-quote-card .view-pdf-btn {
  background: #c7a76c;
  color: #071d38;
}

.customer-detail-page .saved-quote-card .view-html-btn {
  background: #f8f5ef;
  color: #071d38;
  border: 1px solid rgba(199, 167, 108, 0.45);
}

.customer-detail-page .saved-quote-card .delete-quote-btn {
  background: #c00;
  color: #ffffff;
}

.customer-detail-page .saved-quote-card .delete-quote-btn:hover {
  background: #900;
}
.customer-activity-timeline-scroll {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 8px;
}
.quick-status-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: auto;
  min-width: 110px;

  padding: 6px 18px 6px 14px;

  border-radius: 999px;

  border: 1px solid rgba(199, 167, 108, 0.45);

  background-color: #c7a76c;

  color: #071d38;

  font-size: 11px;
  font-weight: 700;

  text-align: center;
  text-align-last: center;

  cursor: pointer;

  display: inline-block;

  background-image:
    linear-gradient(45deg, transparent 50%, #071d38 50%),
    linear-gradient(135deg, #071d38 50%, transparent 50%);

  background-position:
    calc(100% - 10px) calc(50% - 1px),
    calc(100% - 7px) calc(50% - 1px);

  background-size: 3px 3px, 3px 3px;

  background-repeat: no-repeat;
}

.quick-status-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(199, 167, 108, 0.25);
}
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 29, 56, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.custom-modal-box {

  background:
    linear-gradient(
      145deg,
      #071d38 0%,
      #102f55 100%
    );

  border-radius: 24px;

  border:
    1px solid
    rgba(199,167,108,0.65);

  box-shadow:

    0 28px 70px
    rgba(7,29,56,0.42),

    inset 0 1px 0
    rgba(255,255,255,0.05);

  max-width: 440px;

  width: 100%;

  padding:

    34px
    32px
    28px;

  text-align: center;

  color: #ffffff;

  position: relative;

  overflow: hidden;

  animation:
    modalFadeIn
    0.22s ease;
}

.custom-modal-box h3 {

  margin: 0 0 14px;

  color: #c7a76c;

  font-family:
    'Cormorant Garamond',
    serif;

  font-size: 36px;

  font-weight: 600;

  line-height: 1.1;

  letter-spacing: 0.5px;
}

.custom-modal-box p {

  color:
    rgba(255,255,255,0.84);

  font-size: 14px;

  line-height: 1.75;

  max-width: 320px;

  margin:
    0 auto;
}
.custom-modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.custom-modal-actions button {

  min-width: 120px;

  border-radius:
    999px !important;

  padding:
    11px 22px !important;

  font-size:
    13px !important;

  font-weight:
    700 !important;

  letter-spacing:
    0.3px;

  transition:
    all 0.18s ease;

  transform:
    translateY(0);
}


.custom-modal-cancel {
  background: rgba(255,255,255,0.08) !important;

  color: #ffffff !important;

  border: 1px solid rgba(199, 167, 108, 0.35) !important;
}

.custom-modal-cancel:hover {
  background: rgba(255,255,255,0.14) !important;
}

.custom-modal-danger {
  background: #c7a76c !important;

  color: #071d38 !important;

  border: 1px solid rgba(255,255,255,0.15) !important;

  font-weight: 700;
}

.custom-modal-danger:hover {
  background: #d6b57a !important;
}
.custom-modal-overlay {
  background: rgba(7, 29, 56, 0.72) !important;
}

.custom-modal-overlay {
  background: rgba(7, 29, 56, 0.72) !important;
}

.custom-modal-box {
  background: linear-gradient(145deg, #071d38, #102f55) !important;
  border: 1px solid rgba(199, 167, 108, 0.75) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 48px rgba(7, 29, 56, 0.45) !important;
  color: #ffffff !important;
}

.custom-modal-box h3 {
  color: #c7a76c !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 34px !important;
}

.custom-modal-box p {
  color: rgba(255,255,255,0.82) !important;
}

.custom-modal-cancel {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(199, 167, 108, 0.35) !important;
}

.custom-modal-danger {
  background: #c7a76c !important;
  color: #071d38 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
html,
body,
.holiday-tool,
.app-layout,
.app-main,
.app-tab-content,
#newQuoteTab,
#results {
  overflow-anchor: none;
}
.quote-loading-scroll-lock {
  overflow: hidden;
}

#newQuoteTab {
  scroll-margin-top: 0;
}
.customer-profile-contact {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 8px;
}
.customer-profile-contact i,
.customer-profile-contact svg {
  color: #c7a76c !important;
  fill: #c7a76c !important;

  width: 16px;
  min-width: 16px;

  margin-right: 2px;
}
.saved-view-pdf-template .quote-brochure-card {
  min-height: 190px;
  height: 190px;
}

.saved-view-pdf-template .quote-brochure-section {
  padding-bottom: 4px;
}

.saved-view-pdf-template .quote-flight-mini p {
  line-height: 1.1;
}
.hosted-html-quote-page {
  min-height: 100vh;
  background: #f4f4f4;
  padding: 24px;
  box-sizing: border-box;
}

.hosted-html-quote-toolbar {
  max-width: 900px;
  margin: 0 auto 18px;

  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.hosted-html-quote-toolbar button {
  background: #071d38;
  color: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.hosted-html-quote-toolbar button:hover {
  background: #c7a76c;
  color: #071d38;
}

.hosted-html-quote-wrap {
  display: flex;
  justify-content: center;
}

.saved-quote-card .copy-quote-link-btn {
  width: 100%;
  background: #071d38;
  color: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.saved-quote-card .copy-quote-link-btn:hover {
  background: #c7a76c;
  color: #071d38;
}
.customer-notes-card {
  background: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.35);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 0 0 22px;
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.06);
}

.customer-notes-card h3 {
  margin: 0 0 8px;
  color: #071d38;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.customer-notes-card p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 14px;
}
.customer-detail-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

#deleteCustomerBtn {
  background: #f8d7da !important;
  color: #842029 !important;
  border: 1px solid #e5aeb5 !important;
}

#deleteCustomerBtn:hover {
  background: #f1bfc5 !important;
}
#editCustomerBtn {
  background: #071d38 !important;
  color: #ffffff !important;
  border: 1px solid rgba(199, 167, 108, 0.45) !important;
}

#editCustomerBtn:hover {
  background: #c7a76c !important;
  color: #071d38 !important;
}

.edit-customer-modal-box {
  text-align: left;
}

.edit-customer-modal-box h3 {
  text-align: center;
}

.edit-customer-form {
  margin-top: 18px;
}

.edit-customer-form .field label {
  color: #c7a76c;
}

.edit-customer-form input,
.edit-customer-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(199, 167, 108, 0.45);
  font-size: 14px;
}
.saved-quote-card .convert-booking-btn {
  width: 100%;
  background: #e8f7ed;
  color: #147a35;
  border: 1px solid rgba(20, 122, 53, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.saved-quote-card .convert-booking-btn:hover {
  background: #147a35;
  color: #ffffff;
}
.global-search-results {
  display: grid;
  gap: 16px;
}

.global-search-results h3 {
  margin: 10px 0 0;
  color: #071d38;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
}

.global-search-card {
  background: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.35);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.06);

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.global-search-card h4 {
  margin: 0 0 6px;
  color: #071d38;
}

.global-search-card p {
  margin: 3px 0;
  color: #555;
  font-size: 14px;
}

.global-search-card small {
  color: #777;
}

.global-search-card button {
  margin-top: 0 !important;
  white-space: nowrap;
}
.edit-customer-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(199, 167, 108, 0.45);
  font-size: 14px;
  background: #ffffff;
}
.client-quote-page {
  min-height: 100vh;
  background: #f4f1eb;
  padding: 24px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.client-quote-topbar {
  max-width: 960px;
  margin: 0 auto 18px;

  background: #071d38;
  color: #ffffff;

  border-radius: 18px;
  padding: 20px 24px;

  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;

  border: 1px solid rgba(199, 167, 108, 0.55);
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.12);
}

.client-quote-topbar h1 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
}

.client-quote-topbar p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.client-quote-ref {
  background: #c7a76c;
  color: #071d38;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.client-quote-shell {
  max-width: 960px;
  margin: 0 auto;
}


.client-quote-actions button {
  background: #071d38;
  color: #ffffff;
  border: 1px solid rgba(199, 167, 108, 0.45);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.client-quote-actions-heading {
  text-align: center;
  margin-bottom: 18px;
}

.client-quote-actions-heading h2 {
  margin: 0 0 6px;
  color: #071d38;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
}

.client-quote-actions-heading p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.client-quote-actions-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.client-quote-actions-buttons button {
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(199, 167, 108, 0.45);
}

.client-interest-btn {
  background: #f8f5ef;
  color: #071d38;
}

.client-request-changes-btn {
  background: #071d38;
  color: #ffffff;
}

.client-accept-quote-btn {
  background: #c7a76c;
  color: #071d38;
}

.client-quote-actions-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(7, 29, 56, 0.14);
}

.client-quote-actions button:hover {
  background: #c7a76c;
  color: #071d38;
}

.client-quote-footer {
  max-width: 960px;
  margin: 18px auto 0;
  text-align: center;
  color: #555;
  font-size: 13px;
}

.client-quote-error {
  max-width: 600px;
  margin: 80px auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  font-family: Arial, sans-serif;
  border: 1px solid rgba(199, 167, 108, 0.45);
}

@media (max-width: 700px) {
  .client-quote-page {
    padding: 14px;
  }

  .client-quote-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-quote-topbar h1 {
    font-size: 28px;
  }

  .client-quote-actions {
    flex-direction: column;
  }

  .client-quote-actions button {
    width: 100%;
  }
}
.custom-modal-actions button:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 20px
    rgba(0,0,0,0.18);
}

.custom-modal-box::before {

  content:"";

  position:absolute;

  top:-80px;
  right:-80px;

  width:180px;
  height:180px;

  border-radius:50%;

  background:

    radial-gradient(
      rgba(199,167,108,0.14),
      transparent 70%
    );

  pointer-events:none;
}

@keyframes modalFadeIn {

  from {

    opacity:0;

    transform:

      translateY(10px)
      scale(0.97);

  }

  to {

    opacity:1;

    transform:

      translateY(0)
      scale(1);

  }

}
.consultant-logo-upload {

  display:flex;

  flex-direction:column;

  gap:14px;

}

.consultant-logo-preview {

  max-width:220px;

  max-height:90px;

  object-fit:contain;

  padding:10px;

  background:white;

  border-radius:14px;

  border:

    1px solid
    rgba(
      199,
      167,
      108,
      0.35
    );

}
.saved-quote-card .view-pdf-btn:hover,
.customer-detail-page .saved-quote-card .view-pdf-btn:hover {
  background: #071d38 !important;
  color: #ffffff !important;
}

.saved-quote-card .view-html-btn:hover,
.customer-detail-page .saved-quote-card .view-html-btn:hover {
  background: #c7a76c !important;
  color: #071d38 !important;
}
#existingQuoteSearchArea {

  margin-top: 18px;

}

#existingQuoteSearchArea .form-section-card {

  margin-top: 0;

}

#existingQuoteSearchInput {

  width:100%;

  max-width:100%;

  box-sizing:border-box;

  margin:

    14px 0
    18px;

}

#existingQuoteResults {

  display:flex;

  flex-direction:column;

  gap:12px;

}

.existing-quote-row {

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:16px;

  padding:14px;

  border:

    1px solid
    rgba(
      199,
      167,
      108,
      0.25
    );

  border-radius:14px;

  background:#fff;

}

.reuse-quote-btn {

  white-space:nowrap;

}
/* ===== AUTH SCREEN ===== */

#authScreen {

background:
linear-gradient(
180deg,
#08111f 0%,
#0d1930 100%
);

padding:40px;

}

#authScreen > div {

background:
linear-gradient(
180deg,
#12203a 0%,
#0d1729 100%
);

border:

1px solid rgba(
212,
175,
55,
0.22
);

padding:42px;

border-radius:22px;

width:460px;

box-shadow:

0 25px 70px rgba(
0,
0,
0,
0.45
);

}

#authScreen h1 {

font-family:
"Cormorant Garamond",
serif;

font-size:42px;

font-weight:700;

color:#d4af37;

letter-spacing:1px;

margin-bottom:35px;

}

#authScreen label {

display:block;

margin-bottom:8px;

font-size:13px;

letter-spacing:.8px;

text-transform:uppercase;

color:#d4af37;

font-weight:600;

}

#authScreen input {

width:100%;

padding:16px 18px;

background:#08111f;

border:

1px solid rgba(
212,
175,
55,
0.22
);

border-radius:14px;

font-size:15px;

color:white;

margin-bottom:18px;

box-sizing:border-box;

}

#authScreen input:focus {

outline:none;

border-color:#d4af37;

box-shadow:

0 0 0 3px rgba(
212,
175,
55,
0.15
);

}

#loginBtn,
#signupBtn {

padding:16px;

border:none;

border-radius:14px;

font-weight:700;

font-size:15px;

cursor:pointer;

min-height:54px;

transition:.25s;

}

#loginBtn {

background:

linear-gradient(
135deg,
#d4af37,
#e5c158
);

color:#08111f;

}

#signupBtn {

background:

rgba(
255,
255,
255,
0.06
);

border:

1px solid rgba(
212,
175,
55,
0.25
);

color:white;

}

#loginBtn:hover,
#signupBtn:hover {

transform:
translateY(-2px);

}