.price__list__body .price-list-container {
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  padding-bottom: 20px;
  background-color: #ffffff;
  position: relative;
  overflow-x: auto; /* Changed from scroll to auto */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.price__list__body .price-list-container:hover::after {
  opacity: 1;
}

/* Make the scrollbars more visible but elegant on webkit browsers */
.price__list__body .price-list-container::-webkit-scrollbar {
  height: 8px;
}

.price__list__body .price-list-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.price__list__body .price-list-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.price__list__body .price-list-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.price__list__body .price-list-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.application-plan-header-upsize {
  font-size: 16px;
}

.price__list__body .content-row {
  display: flex;
  align-items: flex-start; /* Changed from center for better responsive layout */
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  min-width: 1150px; /* Set minimum width to ensure horizontal scrolling */
}

.price__list__body .japan-map-image {
  width: 450px;
  height: auto;
  display: block;
  flex-shrink: 0; /* Prevent the image from shrinking */
}

.price__list__body .info-container {
  /* width: 450px; */
  border: none;
  flex-shrink: 0; /* Prevent the container from shrinking */
}

.price__list__body .map-header {
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  padding-top: 10px;
}

.price__list__body .map-header-sub {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

.price__list__body .map-header p {
  margin: 5px 0;
  line-height: 1.6;
}

.price__list__body .zone-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 12px;
}

.price__list__body .zone-item h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
}

.price__list__body .zone-a-item h3 {
  color: #b65680;
  font-weight: bold;
}

.price__list__body .zone-b-item h3 {
  color: #5271b0;
  font-weight: bold;
}

.price__list__body .zone-c-item h3 {
  color: #e7a23f;
  font-weight: bold;
}

.price__list__body .zone-item-B {
  margin: 5px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
  width: 290px;
  color: #404040;
}

.price__list__body .zone-item-C {
  margin: 5px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
  width: 290px;
  color: #404040;
}

.price__list__body .zone-item-A {
  margin: 5px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
  width: 280px;
  color: #404040;
}

/* Tabs */
.price__list__body .data__tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 30px 0;
  padding: 0;
  margin-bottom: 20px;
  justify-content: center;
}

.price__list__body .data__tabs li {
  margin: 0 2px;
}

.price__list__body .data__tabs a {
  flex: 1 1 auto;
  text-decoration: none;
  padding: 10px 40px;
  background: #D9D9D9;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

/* Tab A active */
.price__list__body .data__tabs a[aria-selected="true"][href="#zone_A"] {
  background-color: #DA6E82;
  color: #fff;
  border-color: #DA6E82;
}

/* Tab B active */
.price__list__body .data__tabs a[aria-selected="true"][href="#zone_B"] {
  background-color: #5271b0;
  color: #fff;
  border-color: #5271b0;
}

/* Tab C active */
.price__list__body .data__tabs a[aria-selected="true"][href="#zone_C"] {
  background-color: #e7a23f;
  color: #fff;
  border-color: #e7a23f;
}

/* Tab Content */
.price__list__body .tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
}

.price__list__body .tab-content.active {
  display: block;
}

.price__list__body .price-card-desc {
  text-align: center;
  width: 100%;
}

/* Footer của thẻ */
.price__list__body .price-card-footer {
  margin-top: auto;
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.price__list__body .price-card-button {
  display: inline-block;
  width: 100%;
  padding: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #D92765;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.price__list__body .price-card-button::after {
  content: ' ▶';
  margin-left: 10px;
  font-size: 16px;
}

.price__list__body .price-card-button.premium {
  background-color: #D92765;
}

/* pricing-table.css */
.price__list__body .application-pricing-table-container {
  max-width: 100%;
  overflow-x: auto;
}

.price__list__body .application-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  text-align: center;
  table-layout: fixed;
  background: white;
  padding: 4px;
  border-radius: 6px;
}

.price__list__body .application-pricing-table th,
.application-pricing-table td {
  border: none;

  padding: 10px;
  vertical-align: middle;
  word-wrap: break-word;
}


.price__list__body .application-pricing-table tbody tr:nth-child(odd) td {
  background-color: #dad7d7;

}

.price__list__body .application-pricing-table tbody tr:nth-child(even) td {
  background-color: #ffffff;

}

.price__list__body .application-plan-header {
  font-weight: bold;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.4;

}

.price__list__body .application-plan-header .application-header-sub {
  font-size: 0.8rem;
  margin-right: 30px;
}

.price__list__body .application-header-sub-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.price__list__body .application-header-sub-content-left {
  text-align: left;
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.price__list__body .application-header-sub-content-right {
  text-align: right;
  font-weight: bold;
  font-size: 1.3rem;
  word-wrap: break-word;
  word-break: break-word;
}

.price__list__body .application-gray {
  background-color: #E8E8E8;
  color: #333;
}

.price__list__body .application-premium {
  background-color: #102E4C;
  color: #CC9900;
}

.price__list__body .application-advanced {
  background-color: #F2CFEE;
  color: #FF0066;
}

.price__list__body .application-standard {
  background-color: #D9F2D0;
  color: #00B050;
}

.price__list__body .application-economy {
  background-color: #CAEEFB;
  color: #0F9ED5;
}

.price__list__body .application-premium-text .application-header-sub-content-right {
  font-weight: bold;
  color: #CC9900;
}

.price__list__body .application-advanced-text .application-header-sub-content-right {
  font-weight: bold;
  color: #FF0066;
}

.price__list__body .application-standard-text .application-header-sub-content-right {
  font-weight: bold;
  color: #00B050;
}

.price__list__body .application-economy-text .application-header-sub-content-right {
  font-weight: bold;
  color: #0F9ED5;
}

.price__list__body .application-feature-name {
  background-color: #fafafa;
  font-weight: bold;
  text-align: left;
  padding-left: 15px;
  /* white-space: nowrap; */
}

.price__list__body .application-plan-cell {
  font-size: 0.95rem;
  padding: 10px;
  font-weight: bold;
  color: #000000;
}

.price__list__body .application-exclusive {
  color: #C7002E;
  font-weight: bold;
}

.price__list__body .application-sharing {
  color: #000000;
}

.price__list__body .supplement {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  text-align: left;
  margin-left: 12px;
  position: relative;
}

.price__list__body .supplement p {
  /* text-indent: -20px; */
  padding-left: 20px;
  margin: 0 0 10px 0;
  position: relative;
}

.price__list__body .supplement-p-title {
  text-indent: -20px;
  padding-left: 20px;
  margin: 0 0 10px 0;
  position: relative;
}

.price__list__body .supplement p::before {
  content: '●';
  color: #333;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 0;
}

.price-card-list {
  padding-left: 45px !important;
}

@media (max-width: 992px) {
  .price__list__body .price-list-container {
    padding: 10px;
  }
  
  .price__list__body .content-row {
    gap: 15px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* .price__list__body .content-row {
    flex-direction: column;
  } */

  /* .price__list__body .japan-map-image,
  .info-container {
    width: 100%;
  } */
  .price-card-list {
    padding-left: 100px !important;
  }

  .price__list__body .price-list-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px;
  }

  .price__list__body .content-row {
    min-width: 1100px;
    gap: 10px;
  }
  

  .price__list__body .map-header {
    text-align: center;
  }

  .price__list__body .application-header-sub-content-left,
  .application-header-sub-content-right {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .price__list__body .application-header-sub-content-right {
    text-align: center;
  }

  .application-pricing-table {
    min-width: 900px;
  }

  .price__list__body .application-plan-cell {
    font-size: 0.8rem;
    padding: 6px;
  }

  .price__list__body .application-feature-name {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
  .price-list-container {
    width: 300px;
  }
  .price__list__body .japan-map-image {
    width: 400px;
  }
  
  .price__list__body .info-container {
    width: 600px;
  }
  
  /* Adjust text sizes */
  .price__list__body .map-header {
    font-size: 15px;
  }
  
  .price__list__body .map-header-sub {
    font-size: 13px;
  }
  
  .price__list__body .zone-item h3 {
    font-size: 15px;
  }
  
  /* .price__list__body .zone-item-A,
  .price__list__body .zone-item-B,
  .price__list__body .zone-item-C {
    font-size: 13px;
  } */
}