.page-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.selected-title {
  background: linear-gradient(
    90deg,
    rgba(35, 97, 217, 0.15) 0%,
    rgba(94, 36, 217, 0.15) 100%
  );
  width: 100%;
  max-width: 800px;
  text-align: center;
  border: 2px solid #2361d9;
  border-radius: 16px;
  padding: 50px 40px;
  margin: 30px auto;
}

.selected-title-buttons {
  margin-top: 30px;
}

.selected-title label {
  text-align: left;
}

.selected-title .form-item {
  margin: 20px 0;
}

.saved-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.saved-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
}
.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-modal:hover {
  color: #000;
}
.saved-item {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}
.saved-item button {
  margin-top: 10px;
}


.titles-finder-card {
  display: flex;
  justify-content: space-between;
}

.titles-finder-card .title-card-btns {
  justify-content: flex-end;
}