.notificationContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  max-height: 730px;
}
.notificationContainer .topContent {
  width: 100%;
  height: calc(100% - 34px);
  min-height: 665px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  gap: 10px;
}
.notificationContainer .topContent .card {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid #e5f2ff;
  padding-bottom: 1rem;
}
.notificationContainer .topContent .card:last-child {
  border-bottom: unset;
  padding-bottom: unset;
}
.notificationContainer .topContent .card .leftSide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.notificationContainer .topContent .card .leftSide .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #1D428A;
  outline: 1px dotted #1D428A;
  outline-offset: 2px;
}
.notificationContainer .topContent .card .leftSide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #1D428A;
}
.notificationContainer .topContent .card .rightSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.notificationContainer .topContent .card .rightSide h1 {
  font-size: 18px;
}
.notificationContainer .topContent .card .rightSide .detail {
  font-size: 16px;
  margin-top: 6px;
}
.notificationContainer .topContent .card .rightSide .date {
  margin-top: 16px;
  color: #152e61;
}
.notificationContainer .pagination {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  height: 55px;
  border-radius: 14px;
  padding: 0 1rem;
  gap: 26px;
  flex-shrink: 0;
}
.notificationContainer .pagination p {
  font-size: 18px;
  color: #003e7d;
}
.notificationContainer .pagination .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.notificationContainer .pagination .icons svg {
  width: 34px;
  height: 34px;
  background: #1D428A;
  border-radius: 50%;
  padding: 6px;
  fill: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.notificationContainer .pagination .icons svg:hover {
  opacity: 0.8;
}
.notificationContainer .pagination .icons svg.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.notificationCenterContent {
  max-width: 600px;
  background-color: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 38px;
}
.notificationCenterContent .topPart {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.notificationCenterContent .topPart h1 {
  font-size: 24px;
  font-family: var(--brand-font);
  color: rgba(30, 30, 30, 1);
}
.notificationCenterContent .topPart .points {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.notificationCenterContent .topPart .points p {
  font-size: 18px;
  font-family: var(--brand-font);
  color: rgba(30, 30, 30, 1);
}
.notificationCenterContent form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.notificationCenterContent form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notificationCenterContent form .field label {
  font-family: var(--brand-font);
  font-weight: 500;
  color: rgba(30, 30, 30, 1);
  font-size: 18px;
}
.notificationCenterContent form .field select,
.notificationCenterContent form .field textarea,
.notificationCenterContent form .field input {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(29, 66, 138, 0.2);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  padding: 16px;
  font-family: var(--brand-font);
  font-size: 16px;
  color: rgba(30, 30, 30, 1);
}
.notificationCenterContent form .field textarea {
  height: 240px;
  resize: none;
}
.notificationCenterContent form button {
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 16px 24px 0 rgba(29, 66, 138, 0.24);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 20px;
  font-family: var(--brand-font);
  color: #fff;
  background: rgb(29, 66, 138);
  background: linear-gradient(126deg, #1D428A 0%, #152e61 100%);
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;

  &:hover {
    opacity: 0.8;
  }
}

.notificationCenterContent form .field .searchField {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(29, 66, 138, 0.2);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  padding: 4px 16px;
}
.notificationCenterContent form .field .searchField .searchIcon {
  width: 22px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notificationCenterContent form .field .searchField .searchIcon img {
  width: 100%;
  height: 100%;
}
.notificationCenterContent form .field .searchField input {
  border-radius: 0;
  border: none;
  box-shadow: unset;
  width: calc(100% - 32px);
  padding: unset;
  height: 46px;
}
.searchResultDropdown {
  width: 100%;
  max-height: 200px;
  border-radius: 16px;
  border: 1px solid rgba(29, 66, 138, 0.2);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  padding: 4px 8px 4px 16px;
}
.searchResultDropdown .searchContent {
  overflow: auto;
  width: 100%;
  height: 100%;
  max-height: 190px;
}
.searchResultDropdown .searchUser {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #3333;
  transition: 0.3s;
  cursor: pointer;

  &:hover {
    filter: grayscale(1);
  }
}
.searchResultDropdown .searchUser:last-child {
  border-bottom: unset;
}
.searchResultDropdown .searchUser img {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  object-fit: cover;
}
.searchResultDropdown .searchUser .userDetail {
  display: flex;
  flex-direction: column;
}
.searchResultDropdown .searchUser .userDetail h4,
.searchResultDropdown .searchUser .userDetail p {
  font-size: 14px;
  text-decoration: unset;
}
.notificationCenterContent form .field .selectedUserList {
  width: 100%;
  max-height: 220px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  overflow: auto;
}
.notificationCenterContent form .field .selectedUserList .selectedUser {
  width: unset;
  border: 1px solid #1D428A;
  border-radius: 50px;
  display: flex;
  padding: 5px 5px;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.notificationCenterContent
  form
  .field
  .selectedUserList
  .selectedUser
  .userDetail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.notificationCenterContent
  form
  .field
  .selectedUserList
  .selectedUser
  .userDetail
  img {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  object-fit: cover;
}
.notificationCenterContent
  form
  .field
  .selectedUserList
  .selectedUser
  .userDetail
  h1 {
  font-size: 14px;
}
.notificationCenterContent
  form
  .field
  .selectedUserList
  .selectedUser
  .closeIcon {
  width: 36px;
  height: 36px;
  background-color: #cfd5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;

  &:hover {
    transform: scale(0.95);
  }
}
.notificationCenterContent
  form
  .field
  .selectedUserList
  .selectedUser
  .closeIcon
  img {
  width: 14px;
  height: unset;
}

/* Media Query */
@media screen and (max-width: 600px) {
  .notificationCenterContent {
    border-radius: 10px;
    padding: 18px;
    gap: 24px;
  }
  .notificationCenterContent .topPart {
    gap: 14px;
  }
  .notificationCenterContent .topPart h1 {
    font-size: 16px;
  }
  .notificationCenterContent .topPart .points {
    gap: 6px;
  }
  .notificationCenterContent .topPart .points p {
    font-size: 14px;
  }
  .notificationCenterContent form {
    gap: 14px;
  }
  .notificationCenterContent form .field {
    gap: 6px;
  }
  .notificationCenterContent form .field label {
    font-size: 14px;
  }
  .notificationCenterContent form .field select,
  .notificationCenterContent form .field textarea,
  .notificationCenterContent form .field input {
    height: 48px;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
  }
  .notificationCenterContent form .field textarea {
    height: 170px;
  }
  .notificationCenterContent form button {
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
  }
  .notificationCenterContent form .field .searchField .searchIcon {
    width: 18px;
  }
  .notificationCenterContent form .field .searchField {
    border-radius: 10px;
  }
  .notificationCenterContent form .field .searchField input {
    height: 38px;
  }
  .searchResultDropdown {
    border-radius: 10px;
  }
  .searchResultDropdown .searchUser img {
    width: 28px;
    height: 28px;
  }
  .searchResultDropdown .searchUser {
    padding: 8px 0;
  }
  .searchResultDropdown .searchUser .userDetail h4,
  .searchResultDropdown .searchUser .userDetail p {
    font-size: 12px;
  }
  .notificationCenterContent
    form
    .field
    .selectedUserList
    .selectedUser
    .userDetail
    img {
    width: 28px;
    height: 28px;
  }
  .notificationCenterContent
    form
    .field
    .selectedUserList
    .selectedUser
    .userDetail
    h1 {
    font-size: 12px;
  }
  .notificationCenterContent
    form
    .field
    .selectedUserList
    .selectedUser
    .closeIcon {
    width: 28px;
    height: 28px;
  }
  .notificationCenterContent form .field .selectedUserList .selectedUser {
    padding: 3px 3px;
    gap: 10px;
  }
  .notificationCenterContent
    form
    .field
    .selectedUserList
    .selectedUser
    .closeIcon
    img {
    width: 12px;
  }
  .notificationCenterContent form .field .selectedUserList {
    gap: 3px;
  }
}
