.topPart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.topPart svg {
  width: 18px;
  fill: #fff;
}
.topPart .editBtn {
  width: 214px;
  min-height: var(--btn-height-lg);
  border-radius: var(--btn-radius);
  background: rgb(29, 66, 138);
  background: linear-gradient(126deg, #1D428A 0%, #152e61 100%);
  box-shadow: var(--btn-shadow);
  font-family: var(--brand-font);
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  outline: none;
  border: 1px solid #152e61;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;

  &:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: var(--btn-shadow-hover);
  }

  &:active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: var(--btn-shadow);
  }
}

/* Media Query */
@media screen and (max-width: 600px) {
  .topPart svg {
    width: 12px;
  }
  .topPart .editBtn {
    width: 100px;
    min-height: 42px;
    font-size: 14px;
    box-shadow: rgba(29, 66, 138, 0.24) 0px 6px 8px 0px;
    border-radius: var(--btn-radius);
    font-weight: 400;
    line-height: 14px;
  }
}
