.new-feature {
  position: relative;
  display: inline-block;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.new-tag {
  position: absolute;
  top: -20px;
  right: -10px;
  background-color: #ff0000;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  animation: pulseAnimation 1.5s infinite;
}

@keyframes flickerAnimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#scf-search-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#scf-search-form.active {
  visibility: visible;
  opacity: 1;
}

/* 🔹 Dark Background Overlay */
.search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 900;
}

/* 🔹 Search Box Styling */
.search-box {
  position: relative;
  z-index: 1001;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* 🔹 Search Input */
.search-input {
  width: calc(100% - 50px);
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 18px;
  border-radius: 5px;
  outline: none;
}

/* 🔹 Search Button */
.search-button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin-left: 10px;
  color: #666;
}

.search-button:hover {
  color: #333;
}

#search-form {
  display: flex;
}
