
/* Container badge styling */
.redirect-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 12px 35px 12px 25px; /* Extra padding on the right for the X button */
  border-radius: 50px; /* Gives it the pill/capsule shape */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  text-align: center;
  user-select: none;
}

/* Link and Red Text styling */
.badge-link {
  color: #d32f2f; /* Deep, vibrant red matching the image */
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

.badge-link:hover {
  text-decoration: underline; /* Visual cue that it's clickable */
}

/* Suppress / Close Button styling */
.close-btn {
  position: absolute;
  top: -8px; /* Shifts it slightly up over the border */
  right: 15px; /* Positions it on the right side edge */
  width: 20px;
  height: 20px;
  background-color: #e53935; /* Red background for the X button */
  color: #ffffff;
  border: 1px solid #ffffff; /* Crisp white border around the red circle */
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.1s ease;
}

.close-btn:hover {
  transform: scale(1.1);
  background-color: #c62828;
}

