/* Point zone heading and navigation */
.custom-border {
  border: 1px solid #ccc;
  padding: 4px 16px;
  border-radius: 8px;
}

.points-heading {
  font-size: 22px;
  font-weight: bold;
  color: #0f8c7c;
}

.point-zone-wrapper {
  background-color: #fff;
  padding: 20px 15px;
  width: 100%;
}

.point-zone-title {
  font-size: 22px;
  font-weight: 600;
  color: #0f8c7c;
}

.point-zone-title .submenu-title {
  font-size: 12px;
  line-height: 1.4;
  color: #111;
  font-weight: 400;
}

.point-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.point-button {
  align-content: center;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.point-button:hover {
  background-color: #f2f2f2;
}

.point-button.active {
  background-color: #0f8c7c;
  color: #fff;
  border: none;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .point-zone-title {
    font-size: 14px !important;
  }

  .point-zone-title .submenu-title {
    font-size: 12px;
  }

  .point-button {
    align-content: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 9px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
}
