.activeContainer {
  padding: 20px 50px;
  background-color: whitesmoke;
  border-radius: 15px;
  width: 100%;
  margin-top: 10px;
}

.removeWrap,
.replaceWrap {
  width: 90%;
  margin-top: 30px;
}

.removeHead,
.replaceHead {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
}

#filterControls,
#replaceControls {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

#filterControls select,
#replaceControls select,
#filterControls input,
#replaceControls input {
  background-color: #5da6f5;
  min-width: 200px;
  margin-right: 50px;
}

#replaceControls input::placeholder {
  color: #dedede;
}

#filterControls label,
#replaceControls label {
  min-width: 140px;
  text-align: right;
  color: whitesmoke;
  font-size: 1.8rem;
}

.activeTitle {
  border-bottom: 1px solid #717171;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 500;
  color: #2469b3;
  margin-bottom: 15px;
}

.activeList ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.activeList ul li {
  display: flex;
  font-size: 1.8rem;
  border-radius: 15px;
}

.activeList ul li p {
  align-items: center;
  background-color: #b92025;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  color: whitesmoke;
  display: flex;
  font-weight: 700;
  height: 100%;
  padding: 15px;
  width: 65%;
}

.activeList ul li button {
  background-color: #e4e4e4;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-top-left-radius: 0;
  color: #5c5c5c;
  font-weight: 600;
  height: 100%;
  padding: 10px;
  width: 35%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  border: 2px solid #a6a6a6;
  border-left: none;
}

/* .activeList ul li button::after {
  background-color: #b92025;
  border-radius: 50%;
  color: whitesmoke;
  content: "X";
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.activeList ul li button:hover {
  cursor: pointer;
  background-color: #b92025;
  border-color: #b92025;
  color: whitesmoke;
}

/* .active-submenu {
  color: #00ffcc;
  font-weight: bold;
  text-shadow: 0px 0px 8px rgba(0, 255, 204, 0.8);
} */
