.tour-departure-pro-container {
  margin: 20px 0;
}

.lich-khoi-hanh {
  display: flex;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  max-width: 950px;
  margin: 0 auto;
}

.chon-thang {
  padding: 15px 10px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 90px;
  background-color: #fff;
}

.chon-thang button {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 8px 5px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  font-size: 0.9em;
  transition: background-color 0.2s ease;
}

.chon-thang button:hover {
  background-color: #f0f0f0;
}

.chon-thang button.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
  font-weight: bold;
}

.chon-thang button.active:hover {
  background-color: #0056b3;
}

.chi-tiet-lich {
  padding: 15px 25px;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.dieu-huong-thang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.dieu-huong-thang h2 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.dieu-huong-thang button {
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px 8px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.dieu-huong-thang button .tdp-nav-icon i {
    color: #007bff;
    vertical-align: middle;
}
.dieu-huong-thang button .tdp-nav-icon svg {
   fill: #007bff;
   vertical-align: middle;
}

.ngay-trong-tuan {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 0.9em;
  color: #555;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.luoi-ngay-wrapper {
  position: relative;
  flex-grow: 1;
}

.luoi-ngay {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  flex-grow: 1;
  transition: opacity 0.3s ease-in-out;
}

.ngay {
  border: 1px solid #f0f0f0;
  padding: 8px 0;
  min-height: 55px;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
}

.ngay-trong {
  background-color: transparent;
  border-color: transparent;
}

.ngay-qua-khu {
  color: #aaa;
  background-color: #f8f8f8;
  cursor: default;
}

.ngay-thuong.clickable {
  cursor: pointer;
  color: #333;
}

.ngay-thuong.clickable:hover {
  background-color: #e9ecef;
  border-color: #dcdcdc;
}

.ngay-dac-biet.clickable {
  background-color: #fff0f0;
  border: 1px solid #ffcccc;
  color: #c00;
  font-weight: bold;
  cursor: pointer;
}

.ngay-dac-biet.clickable:hover {
  background-color: #ffe0e0;
  border-color: #ffaaaa;
}

.ngay-khong-co-gia {
  color: #bbb;
  background-color: #fafafa;
  cursor: default;
}

.ngay.selected {
  border: 2px solid #0056b3 !important;
  background-color: #e7f3ff !important;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
}

.ngay .gia-ngay {
  display: block;
  margin-top: 4px;
  font-size: 0.8em;
}

.ngay-thuong .gia-ngay,
.ngay-thuong .gia-ngay-thuong {
  color: #007bff;
  font-weight: normal;
}

.ngay-dac-biet .gia-ngay,
.ngay-dac-biet .gia-ngay-dac-biet {
  color: #c00;
  font-weight: bold;
}

.ngay-dac-biet.selected .gia-ngay {
  display: block;
  color: #0056b3;
}

.tdp-note {
  text-align: center;
  color: grey;
  font-style: italic;
  margin-top: 10px;
  flex-shrink: 0;
}

.price-details-view-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#price-details-view {
  background-color: #fff;
  border-radius: 4px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#price-details-view:not(.is-loading) {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tdp-details-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  display: none;
}

.tdp-details-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  flex-shrink: 0;
  justify-content: space-between;
}

.tdp-back-button {
  background: none;
  border: 1px solid #ccc;
  color: #555;
  cursor: pointer;
  font-size: 0.9em;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 15px;
  line-height: 1;
  transition: background-color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.tdp-back-button:hover {
  background-color: #f5f5f5;
  border-color: #bbb;
}

.tdp-selected-date-header {
  font-size: 1.5em;
  font-weight: 600;
  color: #333;
}

.tdp-price-grid {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.tdp-price-grid h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.15em;
  color: #444;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.tdp-price-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--tdp-grid-min-item-width, 180px), 1fr));
  column-gap: var(--tdp-grid-col-gap, 20px);
  row-gap: var(--tdp-grid-row-gap, 15px);
  position: relative;
  min-height: 60px;
}

.tdp-price-item > div:first-child {
   margin-right: 0;
}

.tdp-price-item label {
  display: block;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 0;
  font-weight: 500;
}

.tdp-price-item .tdp-age-range {
  display: block;
  font-size: 0.85em;
  color: #6c757d;
  font-style: italic;
  margin-top: 2px;
  font-weight: normal;
}

.tdp-price-item .tdp-price-amount {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  color: #ff4d4f;
  white-space: nowrap;
  text-align: left;
  margin-top: 4px;
}

.tdp-notes-section {
  border-top: 1px solid #eee;
  padding: 0;
  margin-top: 10px;
  flex-grow: 1;
  overflow-y: auto;
}

.tdp-notes-section h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
  font-weight: 600;
}

.tdp-notes-section .tdp-notes-content {
  font-size: 0.95em;
  line-height: 1.6;
  border-radius: 4px;
  background-color: #FEF2EB;
  color: #e67e22;
  padding: 10px 12px;
  margin-top: 5px;
}

.tdp-bottom-sheet-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); z-index: 999;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.tdp-bottom-sheet-overlay.tdp-overlay-visible { opacity: 1; visibility: visible; transition-delay: 0s; }

.tdp-bottom-sheet-container {
  position: fixed; bottom: 0; left: 0; right: 0; width: 100%;
  background-color: #ffffff;
  border-top-left-radius: 16px; border-top-right-radius: 16px; z-index: 1000;
  display: flex; flex-direction: column; overflow: hidden;
  transition: max-height 0.35s ease-in-out; border-top: 1px solid #e0e0e0;
  max-height: 0; visibility: hidden;
}
.tdp-bottom-sheet-content { overflow-y: auto; flex-grow: 1; display: none; }

.tdp-sheet-row {
  padding: 8px 15px; display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; border-bottom: 1px solid #f5f5f5; position: relative;
}
.tdp-sheet-row:last-child { border-bottom: none; }

.tdp-sheet-row-header {
    display: none;
    cursor: default;
}
.tdp-sheet-departure-info { display: flex; align-items: center; flex-grow: 1; margin-right: 10px; position:relative; min-height: 1.3em; }
.tdp-sheet-label { font-size: 0.9em; color: #555; margin-right: 8px; flex-shrink: 0; }
.tdp-sheet-departure-date { font-size: 0.95em; font-weight: 600; color: #007bff; }

.tdp-sheet-toggle { background: none; border: none; cursor: pointer; padding: 5px; font-size: 1em; color: #888; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.tdp-sheet-toggle .tdp-toggle-icon { display: none; width: 20px; height: 20px; vertical-align: middle; }
.tdp-sheet-toggle .tdp-toggle-icon svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.tdp-bottom-sheet-container.tdp-sheet-peek .tdp-sheet-row-header .tdp-sheet-toggle .icon-down { display: inline-block; }
.tdp-bottom-sheet-container.tdp-sheet-expanded .tdp-sheet-row-header .tdp-sheet-toggle .icon-up { display: inline-block; }


.tdp-sheet-row-price {
  display: none;
  justify-content: flex-start;
  align-items: baseline;
  position: relative;
  min-height: 1.5em;
  padding: 8px 15px;
  cursor: default;
}
.tdp-price-content {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
}
.tdp-price-group {
    display: inline-flex;
    align-items: baseline;
    margin-left: auto;
}
.tdp-sheet-price-value {
    font-size: 1.3em;
    font-weight: bold;
    color: #ff4d4f;
    margin-left: 0;
    margin-right: 4px;
}
.tdp-sheet-guest { font-size: 0.9em; color: #777; }

.tdp-sheet-row-calendar { padding: 0; flex-grow: 1; display: none; border-bottom: none; min-height: 0; }

.tdp-sheet-row-actions {
    justify-content: space-between;
    padding: 10px 15px;
    position:relative;
    min-height: 36px;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
}
.tdp-actions-initial,
.tdp-actions-expanded,
.tdp-actions-selected {
    display: none;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
}

.tdp-sheet-row-actions button {
    padding: 8px 12px;
    font-size: 0.9em;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    flex-shrink: 0;
    line-height: 1.2;
    height: 36px;
    box-sizing: border-box;
}
.tdp-sheet-row-actions button .tdp-btn-icon {
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
}
.tdp-sheet-row-actions button .tdp-btn-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: middle;
}

.tdp-sheet-btn-call,
.tdp-sheet-btn-contact {
    background-color: #125eb1;
    color: #ffffff;
    padding: 0;
    width: 36px;
    height: 36px;
    flex-grow: 0;
}
.tdp-sheet-btn-call svg,
.tdp-sheet-btn-contact svg {
    fill: #ffffff;
    width: 18px;
    height: 18px;
    display: block;
    margin: auto;
}
.tdp-sheet-btn-call:hover,
.tdp-sheet-btn-contact:hover {
    background-color: #0d4a8d;
}

.tdp-sheet-btn-select-date {
    flex-grow: 1;
    flex-basis: 0;
    background-color: #125EB1;
    color: #ffffff;
    border-color: #125EB1;
}
.tdp-sheet-btn-select-date:hover {
    background-color: #0d4a8d;
    border-color: #0d4a8d;
}
.tdp-sheet-btn-select-date .tdp-btn-icon svg {
    fill: #ffffff;
}

.tdp-sheet-btn-close {
    flex-grow: 1;
    flex-basis: 0;
    background-color: #E01400;
    color: #ffffff;
    border-color: #E01400;
}
.tdp-sheet-btn-close:hover {
     background-color: #b31000;
     border-color: #b31000;
}
.tdp-sheet-btn-close .tdp-btn-icon svg {
    fill: #ffffff;
}

.tdp-actions-selected .tdp-sheet-btn-other,
.tdp-actions-selected .tdp-sheet-btn-book {
    flex-grow: 1;
    flex-basis: 0;
}
.tdp-actions-selected .tdp-sheet-btn-other { background-color: #fff; color: #007bff; border-color: #007bff; }
.tdp-actions-selected .tdp-sheet-btn-book { background-color: #dc3545; color: #ffffff; border: 1px solid transparent; }


body.tdp-body-no-scroll { overflow: hidden; }

@keyframes tdp-shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }

.tdp-skeleton {
  background-color: #f0f0f0; border-radius: 4px; position: relative; overflow: hidden;
  background-image: linear-gradient(90deg, #f0f0f0 0px, #f7f7f7 40px, #f0f0f0 80px);
  background-size: 600px; animation: tdp-shimmer 1.5s infinite linear;
}
.tdp-skeleton-text { height: 1em; margin-bottom: 0.5em; width: 75%; background-color: #f0f0f0;}
.tdp-skeleton-text-large { height: 1.4em; width: 60%; }
.tdp-skeleton-text-medium { height: 1.1em; width: 80%; }
.tdp-skeleton-button { height: 36px; width: 40px; display: inline-block; border-radius: 6px; flex-grow: 0 !important; flex-shrink: 0 !important; }
.tdp-skeleton-button-small { height: 28px; width: 60px; }
.tdp-skeleton-date { width: 80px; height: 1em; vertical-align: middle; margin-left: 5px; display: inline-block;}
.tdp-skeleton-price { width: 120px; height: 1.3em; margin-left: auto; vertical-align: middle; display: inline-block;}
.tdp-skeleton-actions { display: none; gap: 8px; justify-content: space-between; width: 100%; flex-wrap: nowrap; align-items: center;}
.tdp-skeleton-actions .tdp-skeleton-button:nth-child(3),
.tdp-skeleton-actions .tdp-skeleton-button:nth-child(4) {
    flex-grow: 1 !important;
    width: auto;
}


.tdp-bottom-sheet-container.is-loading .tdp-sheet-row > * > *:not(.tdp-skeleton) { visibility: hidden; }
.tdp-bottom-sheet-container.is-loading .tdp-sheet-row .tdp-skeleton { visibility: visible; display: inline-block; }
.tdp-bottom-sheet-container.is-loading .tdp-sheet-row-actions .tdp-skeleton-actions { display: flex; }
.tdp-bottom-sheet-container.is-loading .tdp-actions-initial,
.tdp-bottom-sheet-container.is-loading .tdp-actions-expanded,
.tdp-bottom-sheet-container.is-loading .tdp-actions-selected {
    display: none !important;
}

#price-details-view .tdp-price-details-skeleton-mobile {
  display: none;
  padding: 10px;
  flex-grow: 1;
  flex-direction: column;
}
#price-details-view .tdp-price-details-skeleton-mobile .tdp-details-header-skeleton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
#price-details-view .tdp-price-details-skeleton-mobile .tdp-skeleton-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 5px 0;
}
#price-details-view .tdp-price-details-skeleton-mobile .tdp-skeleton-row .tdp-skeleton-text {
  margin-bottom: 0;
}
#price-details-view.is-loading .tdp-price-details-skeleton-mobile {
  display: flex !important;
}
#price-details-view.is-loading .tdp-details-wrapper {
  display: none !important;
}

.elementor-editor-active .tdp-editor-placeholder-wrapper {
  border: 2px dashed #ccd0d4;
  padding: 15px;
  background-color: #f7f7f7;
}
.elementor-editor-active .tdp-editor-placeholder {
  background-color: #e9ecef;
  border: 1px solid #d6d9db;
  padding: 30px 15px;
  text-align: center;
  min-height: 100px;
  margin-bottom: 15px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.elementor-editor-active .tdp-editor-placeholder:last-child {
   margin-bottom: 0;
}
.elementor-editor-active .tdp-editor-placeholder p {
  margin: 0;
  color: #555d66;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}
.elementor-editor-active .tdp-editor-placeholder p strong {
   display: block;
   color: #23282d;
   font-style: normal;
   margin-bottom: 5px;
   font-weight: 600;
   font-size: 14px;
}
.elementor-editor-active .tdp-editor-placeholder p code {
  background-color: rgba(0,0,0,0.07);
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-family: monospace;
  font-size: 12px;
}

.btn-chon-ngay {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
}
.btn-chon-ngay .tdp-button-icon {
  display: inline-flex;
  line-height: 1;
}
.btn-chon-ngay .tdp-button-icon svg {
    vertical-align: middle;
}

.btn-ngay-khac,
.tdp-sheet-btn-other {
  cursor: pointer;
}

.btn-dat-ngay,
.tdp-sheet-btn-book {
  cursor: pointer;
}

@media (min-width: 768px) {
  .tdp-bottom-sheet-overlay, .tdp-bottom-sheet-container { display: none !important; }
  .tour-departure-pro-container > .lich-khoi-hanh.tdp-inline-calendar { display: flex !important; }
}

@media (max-width: 767px) {
  .tour-departure-pro-container > .lich-khoi-hanh.tdp-inline-calendar { display: none !important; }
  .tour-departure-pro-container .tdp-bottom-sheet-container {
      visibility: visible;
      max-height: 165px;
  }

  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek:not(.tdp-date-is-selected) .tdp-sheet-row-header,
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded:not(.tdp-date-is-selected) .tdp-sheet-row-header {
      display: none;
      cursor: default;
  }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek.tdp-date-is-selected .tdp-sheet-row-header,
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded.tdp-date-is-selected .tdp-sheet-row-header {
      display: flex;
      cursor: pointer;
  }

  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek .tdp-sheet-row-price {
      display: flex;
      cursor: default;
  }
   .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek:not(.tdp-date-is-selected) .tdp-sheet-row-price {
       cursor: pointer;
   }
   .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded .tdp-sheet-row-price {
      display: none;
  }

  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek .tdp-sheet-row-calendar { display: none; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded { max-height: 85vh; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded .tdp-sheet-row-calendar { display: block; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded .tdp-bottom-sheet-content { display: flex; }


  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek:not(.tdp-date-is-selected) .tdp-actions-initial { display: flex!important; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek:not(.tdp-date-is-selected) .tdp-actions-expanded,
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek:not(.tdp-date-is-selected) .tdp-actions-selected { display: none; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek.tdp-date-is-selected .tdp-actions-selected { display: flex; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek.tdp-date-is-selected .tdp-actions-initial,
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-peek.tdp-date-is-selected .tdp-actions-expanded { display: none; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded:not(.tdp-date-is-selected) .tdp-actions-expanded { display: flex; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded:not(.tdp-date-is-selected) .tdp-actions-initial,
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded:not(.tdp-date-is-selected) .tdp-actions-selected { display: none; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded.tdp-date-is-selected .tdp-actions-selected { display: flex; }
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded.tdp-date-is-selected .tdp-actions-initial,
  .tour-departure-pro-container .tdp-bottom-sheet-container.tdp-sheet-expanded.tdp-date-is-selected .tdp-actions-expanded { display: none; }


  .tdp-bottom-sheet-content > .lich-khoi-hanh.tdp-inline-calendar { display: flex !important; flex-direction: column; border: none; box-shadow: none; max-width: 100%; width: 100%; height: 100%; flex-grow: 1; }

  /* --- START CSS FIX --- */
  .tdp-bottom-sheet-content .chon-thang {
      display: none; /* Hide by default */
      flex-direction: row;
      overflow-x: auto;
      border-right: none;
      border-bottom: 1px solid #eee;
      padding: 10px 5px;
      min-width: auto;
      flex-basis: auto;
      flex-shrink: 0;
  }
  /* Show only when the 'yes' class is present (switch is ON) */
  .tdp-month-selector-yes .tdp-bottom-sheet-content .chon-thang {
      display: flex !important;
  }
  /* --- END CSS FIX --- */

  .tdp-bottom-sheet-content .chi-tiet-lich { padding: 10px 15px; flex-grow: 1; display: flex; flex-direction: column; box-shadow: none !important; }
  .tdp-bottom-sheet-content .luoi-ngay { gap: 2px; flex-grow: 1;}
  .tdp-bottom-sheet-content .ngay { min-height: 45px; font-size: 0.85em; }
  .tdp-bottom-sheet-content .ngay .gia-ngay { font-size: 0.75em; }

   .tdp-bottom-sheet-content #price-details-view { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; min-height: 250px; }
   .tdp-bottom-sheet-content .tdp-price-grid h4 { font-size: 1.1em; margin-bottom: 10px; padding-bottom: 5px; border-bottom-color: #eee; }
   .tdp-bottom-sheet-content .tdp-price-columns { display: grid; grid-template-columns: 1fr; margin-bottom: 15px; }
   .tdp-bottom-sheet-content .tdp-price-item { display: flex; justify-content: space-between; align-items: flex-start; }
   .tdp-bottom-sheet-content .tdp-price-item > div:first-child { margin-right: 10px; }
   .tdp-bottom-sheet-content .tdp-price-item label { display: block; margin-bottom: 0; font-size: 0.95em; margin-right: 0; }
   .tdp-bottom-sheet-content .tdp-price-item .tdp-age-range { font-size: 0.8em; margin-top: 2px; }
   .tdp-bottom-sheet-content .tdp-price-item .tdp-price-amount { display: inline; font-size: 1.1em; font-weight: bold; text-align: right; white-space: nowrap; margin-top: 0; }
   .tdp-bottom-sheet-content .tdp-notes-section { margin-top: 15px; padding-top: 10px; border-top-color: #eee; }
   .tdp-bottom-sheet-content .tdp-notes-section h4 { font-size: 1.05em; margin-bottom: 8px; }
   .tdp-bottom-sheet-content .tdp-notes-section .tdp-notes-content { font-size: 0.9em; }
   .tdp-bottom-sheet-content #price-details-view .tdp-price-details-skeleton-mobile { padding: 15px; }
   .tdp-bottom-sheet-content #price-details-view .tdp-price-details-skeleton-mobile .tdp-skeleton-row { margin-bottom: 5px; padding: 3px 0; }
   .tdp-bottom-sheet-content #price-details-view .tdp-price-details-skeleton-mobile .tdp-skeleton-row .tdp-skeleton-text { height: 0.95em; }

    .tdp-bottom-sheet-container .tdp-sheet-row-actions { padding-left: 10px; padding-right: 10px; }
    .tdp-bottom-sheet-container .tdp-actions-initial, .tdp-bottom-sheet-container .tdp-actions-expanded, .tdp-bottom-sheet-container .tdp-actions-selected { gap: 6px; }
    .tdp-bottom-sheet-container .tdp-sheet-row-actions button { flex-basis: auto; flex-grow: 0; flex-shrink: 1; }
    .tdp-bottom-sheet-container .tdp-actions-initial .tdp-sheet-btn-select-date, .tdp-bottom-sheet-container .tdp-actions-expanded .tdp-sheet-btn-close, .tdp-bottom-sheet-container .tdp-actions-selected .tdp-sheet-btn-other, .tdp-bottom-sheet-container .tdp-actions-selected .tdp-sheet-btn-book { flex-grow: 1; flex-basis: 0; min-width: 0; }
    .tdp-bottom-sheet-container .tdp-sheet-row-actions .tdp-sheet-btn-call, .tdp-bottom-sheet-container .tdp-sheet-row-actions .tdp-sheet-btn-contact { flex-grow: 0; flex-shrink: 0; flex-basis: auto; width: 36px; }
    .tdp-bottom-sheet-container.is-loading .tdp-skeleton-actions { flex-wrap: nowrap; justify-content: space-between; gap: 6px; padding-left: 10px; padding-right: 10px; }
    .tdp-bottom-sheet-container.is-loading .tdp-skeleton-actions .tdp-skeleton-button { flex-basis: auto; height: 36px; }
    .tdp-bottom-sheet-container.is-loading .tdp-skeleton-actions .tdp-skeleton-button:nth-child(1), .tdp-bottom-sheet-container.is-loading .tdp-skeleton-actions .tdp-skeleton-button:nth-child(2) { width: 36px; flex-grow: 0 !important; }
    .tdp-bottom-sheet-container.is-loading .tdp-skeleton-actions .tdp-skeleton-button:nth-child(3), .tdp-bottom-sheet-container.is-loading .tdp-skeleton-actions .tdp-skeleton-button:nth-child(4) { flex-grow: 1 !important; width: auto; }

}

/* Styles for Sidebar Booking Actions */
.tdp-sidebar-widget-container .booking-actions {
  display: flex;
  align-items: center; /* Canh giữa các nút theo chiều dọc */
  /* justify-content: space-between; */ /* Bỏ comment nếu muốn nút cách xa nhau tối đa */
  flex-wrap: wrap; /* Cho phép xuống dòng nếu không đủ chỗ */
  /* gap property will be applied inline by Elementor based on widget setting */
}