.introjs-tooltip {
  background-color: #ffffff;
  color: #333;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  z-index: 10003;
  min-width: 500px !important;
  max-width: 500px !important;
  width: 500px !important;
}

.introjs-tooltip-title {
  color: #80215A;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.introjs-tooltip-header {
  margin-bottom: 15px;
}

.introjs-tooltiptext {
  margin-bottom: 15px;
}

.introjs-arrow {
  border-color: #ffffff;
}

.introjs-button {
  padding: 10px 15px;
  background-color: #80215A;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  text-shadow: none;
  margin-right: 5px;
}

.introjs-button:hover, .introjs-button:focus {
  background-color: #9C3872;
  color: white;
  box-shadow: none;
}

.introjs-disabled {
  background-color: #ccc;
  color: #666;
}

.introjs-overlay {
  z-index: 10000;
}

.introjs-helperLayer {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #80215A;
  box-shadow: 0 2px 15px rgba(0,0,0,0.4);
  z-index: 10001;
}

.introjs-tooltipReferenceLayer {
  z-index: 10002;
}
@media screen and (min-width: 1025px) {
  .introjs-tooltip {
      max-width: 700px; /* Or any other value that suits your design */
  }
}

@media screen and (max-width: 1024px) {
  .introjs-tooltip {
      max-width: 500px;
      font-size: 14px;
      padding: 15px;
  }

  .introjs-tooltip-title {
      font-size: 18px;
  }

  .introjs-button {
      padding: 8px 12px;
      font-size: 12px;
  }
}
.tour-button {  
  padding: 10px 15px;
  background-color: #80215A; /* Your brand color */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-button:hover {
  background-color: #9C3872; /* A lighter shade of your brand color */
}

/* If you want to add an icon before the text, like your other buttons */
.tour-button::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>');
}