.postBanner {
  display: block;
}

.postBanner a {
  display: block;
  border-radius: 5px;
}

.postBanner a img {
  width: 100%;
  border-radius: 5px;
}

.bannerContent {
  max-width: 700px;
  background: linear-gradient(135deg, #0071bc, #00aaff);
  color: white;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 25px;
  border-radius: 5px;
}

.bannerContent img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.bannerContent h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.bannerContent p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #fff;
}

.bannerContent a {
  background-color: #ffc107;
  color: #333;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.bannerContent a:hover {
  background-color: #e6ac00;
}

.itemRelated {
  border: solid 1px #ddd;
  border-radius: 5px;
  margin-top: 25px;
}

.itemRelated ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}

.itemRelated ul li {
  padding: 10px 20px;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  transition: color 0.3s ease;
}

.itemRelated ul li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
}

.itemRelated ul li i {
  font-size: 1.2rem;
  color: #0071bc;
  transition: color 0.3s ease;
}

.itemRelated ul li:hover {
  color: #005a9c;
}

.itemRelated ul li:hover i {
  color: #005a9c;
}

.time {
  border: 1px solid #e1e4e8;
  border-radius: 4px;
  margin-top: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.time h2 {
  font-size: 20px;
  padding: 16px 24px;
  font-weight: 600;
  color: #222;
  background: linear-gradient(to right, #f8f8f8, #fff);
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
}

.time .scrollWrapper {
  width: 100%;
  position: relative;
}

.time .scrollWrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.time ul {
  display: inline-block;
  min-width: 600px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.time ul li {
  border-bottom: 1px solid #f0f0f0;
}

.time ul li .accordionHeader {
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #2c3e50;
  transition: background 0.3s;
}

.time ul li .accordionHeader:hover {
  background-color: #f9f9f9;
}

.time ul li .accordionContent {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: #0678b1;
}

.time ul li .accordionContent .timeValue {
  position: relative;
  display: block;
  padding: 14px 16px;
  margin-top: 8px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #0678b1;
  overflow: hidden;
  z-index: 0;
}

.time ul li .accordionContent .timeValue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #0678b1;
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 8px;
}

.time ul li .accordionContent .timeValue:hover::before {
  width: 100%;
}

.time ul li .accordionContent .timeValue:hover {
  color: #fff;
}

.time ul li .show {
  max-height: 100px;
  padding: 0 24px 12px;
}

.businessdata {
  display: block;
  width: 100%;
  border: solid 1px #ddd;
  padding: 20px 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.businessdata .Customizedata {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.businessdata .Customizedata span {
  display: block;
}

.businessdata .Customizedata span h2 {
  font-size: 18px;
  line-height: 19px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 4px;
  width: 100%;
  color: #222;
}

.businessdata .Customizedata span p {
  font-size: 15px;
  line-height: 16px;
  padding-top: 5px;
  color: #555;
  width: 100%;
  margin-bottom: 9px;
}

.businessdata .claimdata {
  width: 100%;
}

.businessdata .claimdata a {
  text-decoration: none;
  font-size: 15px;
  line-height: 40px;
  margin-top: 12px;
  height: 40px;
  background-color: #0678b1;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  border-radius: 3px;
  color: #fff;
  justify-content: center;
}

.category {
  border: solid 1px #ddd;
  height: 400px;
  overflow-y: scroll;
  margin-top: 20px;
  border-radius: 5px;
}

.category h2 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
}

.category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category ul li {
  padding: 15px 20px;
  border-bottom: solid 1px #ddd;
  transition: 0.6s;
  cursor: pointer;
}

.category ul li:hover {
  background: #f7f7f7;
}

.category ul li:last-child {
  border: none;
}

.category ul li a {
  font-size: 15px;
  color: #444;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
}

.category ul li i {
  color: #0678b1;
}

.cities {
  border: solid 1px #ddd;
  height: 400px;
  overflow-y: scroll;
  margin-top: 20px;
  border-radius: 5px;
}

.cities h2 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
}

.cities ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cities ul li {
  padding: 15px 20px;
  border-bottom: solid 1px #ddd;
  transition: 0.6s;
  cursor: pointer;
}

.cities ul li:hover {
  background: #f7f7f7;
}

.cities ul li:last-child {
  border: none;
}

.cities ul li a {
  font-size: 15px;
  color: #444;
  width: 100%;
  display: flex;
  font-weight: 500;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.cities ul li i {
  color: #0678b1;
}

.related {
  margin-top: 25px;
}

.related h2 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.related .row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
