.topPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topPart .leftSide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.topPart .leftSide h1 {
  font-size: 18px;
}

.topPartActions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reviewBanner {
  width: 100%;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 16px 20px;
  color: #78350f;
}
.reviewBanner h2 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #92400e;
}
.reviewBanner p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}
.reviewBanner ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.reviewBanner li {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 4px;
}

/* Why flagged — compact type chips + detail dialog */
.flaggedChips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.flaggedChipsBanner {
  margin-top: 10px;
  gap: 8px;
}

.flaggedMatchesEmpty {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
}

.flaggedChip {
  appearance: none;
  margin: 0;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #92400e;
  font-family: var(--brand-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.flaggedChip:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
}

.flaggedChip:active {
  transform: translateY(0);
  box-shadow: none;
}

.flaggedDialogTitle {
  font-family: var(--brand-font) !important;
  font-weight: 600 !important;
  color: #78350f !important;
}

.flaggedDialogContent {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px !important;
}

.flaggedDialogField {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.flaggedDialogLabel {
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.flaggedDialogValue {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  word-break: break-all;
  user-select: text;
}

.flaggedDialogText {
  font-size: 14px;
  color: #334155;
  word-break: break-word;
}

.platformSuspendBtn {
  border-radius: var(--btn-radius);
  border: 1px solid #b82318;
  font-family: var(--brand-font);
  font-size: 14px;
  line-height: 1;
  min-width: 120px;
  height: var(--btn-height);
  padding: 0 14px;
  background: linear-gradient(126deg, #da291c 0%, #b82318 100%);
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.28);
}
.platformSuspendBtn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(218, 41, 28, 0.36);
}
.platformSuspendBtn:active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.28);
}

/* Centers controls vertically in DataGrid rows */
.tableActionCell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 6px 8px;
  box-sizing: border-box;
}

/* Assignment table â€” Flagged column (match Status: readable text, centered) */
.flaggedCell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 6px;
  box-sizing: border-box;
}

.flaggedCellLabel {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.flaggedCellDash {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.tableActionCell .suspendBtn,
.tableActionCell .deletedBtn,
.tableActionCell .deactivateBtn,
.tableActionCell .gridDeleteBtn {
  min-height: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: 500;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.singleSuspendBtn {
  border-radius: var(--btn-radius);
  border: 1px solid #b82318;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 92px;
  height: var(--btn-height);
  padding: 0 14px;
  background: linear-gradient(126deg, #da291c 0%, #b82318 100%);
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.28);
}
.singleSuspendBtn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(218, 41, 28, 0.36);
}
.singleSuspendBtn:active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.28);
}

/* Delete column — shared outlined danger (matches ActionButton danger) */
.gridDeleteBtn {
  border-radius: var(--btn-radius);
  border: 1px solid var(--status-danger-border);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 76px;
  height: var(--btn-height);
  padding: 0 14px;
  background: #fff;
  color: var(--status-danger);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease,
    opacity 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: var(--btn-shadow);
}
.gridDeleteBtn:hover {
  background: var(--status-danger-bg);
  border-color: var(--status-danger);
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.2);
}
.gridDeleteBtn:active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: var(--btn-shadow);
}
.gridDeleteBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gridDeleteBtnMuted {
  min-width: 118px;
  font-size: 12px;
  opacity: 0.95;
  filter: grayscale(0.12);
  border-style: dashed;
}

.unsuspendBtn {
  border-radius: var(--btn-radius);
  border: 1px solid #15803d;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 96px;
  height: var(--btn-height);
  padding: 0 14px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.25);
}
.unsuspendBtn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.32);
}
.unsuspendBtn:active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.25);
}
.topPart .form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.topPart .form .inputWrapper {
  display: flex;
  min-width: 200px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(29, 66, 138, 0.2);
  background: #ffffff;
  padding: 0 16px;
  position: relative;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  font-size: 18px;
}

.inputWrapper input {
  background-color: transparent;
  outline: none;
  border: none;
  color: #1e1e1e;
  width: 100%;
  font-size: 18px;
  padding-right: 38px;
}
.topPart .form .inputWrapper input::placeholder {
  color: #1e1e1e;
}
.inputWrapper svg {
  position: absolute;
  right: 9px;
  width: 20px;
  top: 8px;
}
.form select {
  display: flex;
  width: 140px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(29, 66, 138, 0.2);
  background: #ffffff;
  padding: 0 10px;
  color: #1e1e1e;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  font-family: var(--brand-font);
  font-size: 18px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* flex-wrap: wrap; */
  gap: 20px;
  width: 100%;
}

.ClientData {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.ClientData img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(44, 123, 214);
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}
.ClientData h1 {
  font-size: 14px;
}

.bottomPart {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 26px;
}
.bottomPart .leftSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 30%;
}
.bottomPart .leftSide .leftSide_topPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.bottomPart .leftSide .leftSide_topPart .container {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(29, 66, 138, 0.24);
  border-radius: 12px;
  -webkit-user-select: text;
  user-select: text;
}

.userInformation_profileData__jh_Mf {
  padding: 14px !important;
}
.bottomPart .leftSide .leftSide_bottomPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.bottomPart .leftSide .leftSide_bottomPart .leftSide_bottomPart_Media {
  width: 100%;
  height: 132px;
  background-color: #fbfdff;
  box-shadow: 0 2px 10px 0 rgba(29, 66, 138, 0.24);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  overflow-y: auto;
}
.bottomPart .leftSide .leftSide_bottomPart .leftSide_bottomPart_Media img {
  border-radius: 10px;
  object-fit: contain;
  background-color: #D4DCE8;
  cursor: pointer;
  transition: 0.3s;

  &:hover {
    opacity: 0.8;
  }
}
.bottomPart .leftSide .leftSide_bottomPart .leftSide_bottomPart_Media a {
  border-radius: 10px;
  object-fit: contain;
  background-color: #D4DCE8;
  width: 100px;
  height: 100px;
}
.bottomPart .leftSide .leftSide_bottomPart .leftSide_bottomPart_Media a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bottomPart .rightSide {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.bottomPart .rightSide .rightSide_topPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
}
.bottomPart .rightSide .rightSide_topPart .rightSide_topPart_leftSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  width: 30%;
}
.bottomPart .rightSide .rightSide_topPart .rightSide_topPart_leftSide .content {
  width: 100%;
  background-color: #fbfdff;
  box-shadow: 0 2px 10px 0 rgba(29, 66, 138, 0.24);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  -webkit-user-select: text;
  user-select: text;
}
.bottomPart
  .rightSide
  .rightSide_topPart
  .rightSide_topPart_leftSide
  .content
  img {
  border-radius: 50px;
  width: 70px;
  height: 70px;
  object-fit: cover;

  border: 1px solid rgb(22 49 235);
  padding: 2px;
  box-shadow: 0 0 5px 0 rgb(21 47 229);
}
.bottomPart
  .rightSide
  .rightSide_topPart
  .rightSide_topPart_leftSide
  .content
  h1 {
  color: #1D428A;
}
.bottomPart .rightSide .rightSide_topPart .rightSide_topPart_rightSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 70%;
  gap: 12px;
}
.bottomPart
  .rightSide
  .rightSide_topPart
  .rightSide_topPart_rightSide
  .listOfSkills {
  width: 100%;
  background-color: #fbfdff;
  box-shadow: 0 2px 10px 0 rgba(29, 66, 138, 0.24);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  max-height: 200px;
  overflow-y: auto;
}
.bottomPart
  .rightSide
  .rightSide_topPart
  .rightSide_topPart_rightSide
  .listOfSkills
  > .card {
  width: 220px;
  padding: 0.5rem;
  border: 1px solid #1D428A;
  border-radius: 10px;
  -webkit-user-select: text;
  user-select: text;
}
.bottomPart
  .rightSide
  .rightSide_topPart
  .rightSide_topPart_rightSide
  .listOfSkills
  > .card
  > p
  > span {
  color: #1D428A;
  font-weight: 500;
}

.bottomPart .rightSide .rightSide_bottomPart {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  height: 490px;
}

.updatedBtn,
.deletedBtn,
.suspendBtn,
.deactivateBtn {
  border-radius: var(--btn-radius);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 76px;
  height: var(--btn-height);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease,
    opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--btn-shadow);
}
.updatedBtn:hover:not(:disabled),
.deletedBtn:hover:not(:disabled),
.suspendBtn:hover:not(:disabled),
.deactivateBtn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: var(--btn-shadow-hover);
}
.updatedBtn:active:not(:disabled),
.deletedBtn:active:not(:disabled),
.suspendBtn:active:not(:disabled),
.deactivateBtn:active:not(:disabled) {
  opacity: 1;
  transform: translateY(0);
  box-shadow: var(--btn-shadow);
}
.updatedBtn {
  border: 1px solid var(--brand-primary);
  background: #fff;
  color: var(--brand-primary);
}
.deletedBtn {
  border: 1px solid var(--status-danger-border);
  background: #fff;
  color: var(--status-danger);
}
.deletedBtn:hover:not(:disabled) {
  background: var(--status-danger-bg);
  border-color: var(--status-danger);
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.2);
}
.deletedBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.disablesBtn {
  border: 1px solid var(--status-danger-border);
  background: #fff;
  color: var(--status-danger);
  border-radius: var(--btn-radius);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 76px;
  height: var(--btn-height);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  opacity: 0.45;
  cursor: not-allowed;
}
.suspendBtn {
  border: 1px solid var(--status-success);
  background: var(--status-success-bg);
  color: var(--status-success);
}
.suspendBtn:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.22);
}
.deactivateBtn {
  border: 1px solid var(--status-warning);
  background: var(--status-warning-bg);
  color: #9a3412;
}
.deactivateBtn:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.22);
}

.lastActivityBtn {
  border-radius: var(--btn-radius);
  border: 1px solid var(--brand-primary-deep);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 110px;
  height: var(--btn-height);
  padding: 0 14px;
  background: linear-gradient(126deg, #1d428a 0%, #152e61 100%);
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(29, 66, 138, 0.22);

  &:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(29, 66, 138, 0.3);
  }

  &:active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(29, 66, 138, 0.22);
  }
}

.messageBtn {
  border-radius: var(--btn-radius);
  border: 1px solid #1d428a;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 96px;
  height: var(--btn-height);
  padding: 0 14px;
  background: #ffffff;
  color: #1d428a;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: var(--btn-shadow);

  &:hover {
    background: #f0f4fa;
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 66, 138, 0.18);
  }

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

.suspendActionBtn {
  border-radius: var(--btn-radius);
  border: 1px solid #b82318;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 96px;
  height: var(--btn-height);
  padding: 0 14px;
  background: linear-gradient(126deg, #da291c 0%, #b82318 100%);
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.28);

  &:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(218, 41, 28, 0.36);
  }

  &:active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(218, 41, 28, 0.28);
  }
}

.unsuspendActionBtn {
  border-radius: var(--btn-radius);
  border: 1px solid #15803d;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  min-width: 96px;
  height: var(--btn-height);
  padding: 0 14px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.25);

  &:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(22, 163, 74, 0.32);
  }

  &:active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(22, 163, 74, 0.25);
  }
}

.activeUser {
  color: var(--status-success);
}
.inactiveUser {
  color: var(--status-danger);
}

.mainContent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.mainContent .colOne {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mainContent .colOne .container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 8px;
}
.mainContent .colThree {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.mainContent .colThree .mainCard {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.mainContent .colThree .mainCard .Card {
  background-color: #e0e4ff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.mainContent .colThree .mainCard .Card .CardImage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  position: relative;
  width: max-content;
}
.mainContent .colThree .mainCard .Card .CardImage img {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: #1D428A;
  box-shadow: 0 0 8px 0px #6275ff;
  border: 1px solid #6373e3;
}
.mainContent .colThree .mainCard .Card .CardImage .tag {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  bottom: -2px;
  right: -3px;
  background-color: #2A5A9E;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}
.mainContent .colThree .mainCard .Card h1 {
  font-size: 16px;
  font-weight: 500;
}
.mainContent .colThree .mainCard .Card a {
  transition: 0.3s;
}
.mainContent .colThree .mainCard .Card a:hover {
  opacity: 0.8;
}

/* Media Query */
@media screen and (max-width: 1780px) {
  .bottomPart {
    flex-wrap: wrap;
  }
  .bottomPart .rightSide .rightSide_topPart {
    flex-wrap: wrap;
  }
  .bottomPart .leftSide {
    width: 100%;
  }
  .bottomPart .rightSide,
  .bottomPart .rightSide .rightSide_topPart .rightSide_topPart_rightSide,
  .bottomPart .rightSide .rightSide_topPart .rightSide_topPart_leftSide {
    width: 100%;
  }
  .bottomPart .leftSide .leftSide_topPart .container {
    width: 470px;
  }
}

@media screen and (max-width: 1200px) {
  .row {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .topPart .leftSide h1 {
    font-size: 18px;
  }
  .topPart .leftSide {
    gap: 14px;
  }
  .sendNotificationBtn {
    padding: 10px 16px;
    font-size: 14px;
  }
  .suspendBtn {
    font-size: 14px;
  }
  .updatedBtn,
  .deletedBtn,
  .suspendBtn {
    line-height: 14px;
    min-width: 70px;
    min-height: 35px;
    border-radius: 10px;
  }
  .bottomPart .leftSide,
  .bottomPart .rightSide .rightSide_topPart .rightSide_topPart_leftSide,
  .bottomPart .rightSide,
  .bottomPart .rightSide .rightSide_topPart .rightSide_topPart_rightSide {
    width: 100%;
  }
  .bottomPart .leftSide .leftSide_topPart .container {
    width: 100%;
    padding: 14px;
  }
  .bottomPart .leftSide .leftSide_topPart h1,
  .bottomPart .leftSide .leftSide_bottomPart h1,
  .bottomPart .rightSide .rightSide_topPart .rightSide_topPart_leftSide h1,
  .bottomPart .rightSide .rightSide_topPart .rightSide_topPart_rightSide h1,
  .bottomPart .rightSide .rightSide_bottomPart h1 {
    font-size: 16px;
  }
  .bottomPart .leftSide .leftSide_bottomPart .leftSide_bottomPart_Media {
    border-radius: 10px;
    padding: 10px;
    min-height: 200px;
    height: unset;
  }
  .bottomPart .leftSide .leftSide_bottomPart .leftSide_bottomPart_Media img {
    border-radius: 8px;
  }
  .bottomPart
    .rightSide
    .rightSide_topPart
    .rightSide_topPart_rightSide
    .listOfSkills {
    border-radius: 10px;
    padding: 10px;
  }
  .bottomPart
    .rightSide
    .rightSide_topPart
    .rightSide_topPart_rightSide
    .listOfSkills
    > .card {
    border-radius: 8px;
    width: 170px;
  }
  .bottomPart
    .rightSide
    .rightSide_topPart
    .rightSide_topPart_rightSide
    .listOfSkills
    > .card
    p {
    font-size: 14px;
  }
  .bottomPart
    .rightSide
    .rightSide_topPart
    .rightSide_topPart_leftSide
    .content {
    border-radius: 10px;
    padding: 10px;
  }
  .ClientData > h1 {
    font-size: 14px;
  }
  .mainContent .colOne {
    width: 100%;
  }
  .mainContent .colOne .container {
    padding: 18px;
  }
  .mainContent .colThree {
    width: 100%;
    justify-content: space-between;
  }
  .mainContent .colThree .mainCard .Card h1 {
    font-size: 14px;
  }
  .mainContent .colThree .mainCard .Card a {
    font-size: 14px;
  }
}
