@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.02);
}

.ab-remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.03);
  color: #888;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0;
  flex-shrink: 0;
  align-self: center;
  box-sizing: border-box;
}

.ab-remove-item:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  text-decoration: none;
  transform: scale(1.08);
}
button {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.ab-title-back {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.ab-title-back button {
  background-color: #fff;
  border: none;
  color: #111;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ab-title-back button:hover {
  transform: scale(1.05);
}

.ab-title-back h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.ab-title-back h3 span {
  color: #555;
  font-weight: 400;
}
