<style>
.accordion-header {
  display: none;
}
.accordion-collapse {
  transition: height 0.8s ease !important;
}
#seoProgressText p {
  color: black;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#seoProgressText p.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.labelText {
  font-size: 18px;
  color: #000000;
  line-height: 1.66em;
}
input.form-control,
textarea.form-control,
select.form-control {
  font-size: 18px !important;
  color: #000000 !important;
  line-height: 1.66em !important;
}
.spinner-hourglass {
  width: 40px;
  height: 40px;
  margin: 1em auto;
  border: 6px solid #ccc;
  border-color: #ccc transparent #ccc transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
  font-weight: 400;
}
.fade-in.show {
  opacity: 1;
}
#seo-preview-wrapper.danger {
	background-color: #ffe6e6;
	color: #990000;
	padding: 1em;
	border-left: 4px solid #cc0000;
	border-radius: 4px;
}
/*
#seo-preview-text {
  background-color: transparent;
}
*/
.tooltip-container {
  position: relative;
  display: inline-block;
}
.tooltip-icon {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 6px;
  position: relative;
  top: 3px;
}

.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  bottom: 125%; /* fölé kerül */
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  width: max-content;
  max-width: 240px;
  white-space: normal;
}

.tooltip-icon:hover + .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.loading-bar-wrapper {
  width: 100%;
  max-width: 300px;
  height: 12px;
  margin: 0 auto;
  background-color: #eee;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.loading-bar {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    45deg,
    #00859b 25%,
    transparent 25%,
    transparent 50%,
    #00859b 50%,
    #00859b 75%,
    transparent 75%,
    transparent
  );
  background-size: 30px 30px;
  animation: move-stripes 1s linear infinite;
}

@keyframes move-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
.striped-border {
  border: 8px solid;
  border-image: repeating-linear-gradient(
    45deg,
    transparent,             
    transparent 10px,
    #00859b 10px,
    #00859b 20px
  ) 8;
  border-radius: 1rem;
}
.seo-card.inactive {
  opacity: 0.4;
  filter: grayscale(50%);
  transition: all 1.2s ease 0.3s;
}

.seo-card.active {
  opacity: 1;
  filter: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}


</style>

<style>
.exit-popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-content {
  background: white;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  position: relative;
}
.popup-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.popup-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: #0099cc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}
</style>

