.domains-hd-cont {
  margin-top: 40px;
  margin-bottom: 32px;
}

.domains-hd,
.domains-details-hd {
  font-family: "PlusJakartaSans-SemiBold";
  color: var(--primary-color);
  margin-bottom: 8px;
}
.check-disposal-email {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
  color: #595959;
}
.domains-hd {
  font-size: 20px;
}

.domains-details-hd {
  font-size: 24px;
}
.domain-hd-cont-inner {
  display: flex;
  gap: 12px;
}

.domain-hd-cont-inner > p {
  color: var(--primary-color);
  font-size: 16px;
  font-family: "PlusJakartaSans-Regular";
}

.domain-hd-cont-inner a {
  position: relative;
  font-weight: 400;
  color: #595959;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* underline element */
.domain-hd-cont-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* adjust distance below text */
  width: 0%;
  height: 2px;
  background-color: #595959;
  transition: width 0.3s ease;
}

/* animate on hover */
.domain-hd-cont-inner a:hover {
  color: #222;
}

.domain-hd-cont-inner a:hover::after {
  width: 100%;
}

.active-page {
  color: #1452ca !important;
  font-weight: 600 !important;
  border-bottom: 1px solid #1452ca;
}
.domain-discription {
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.domain-discription {
  font-size: 16px;
  font-weight: 600;
}
.block-domain-btn {
  width: fit-content;
  height: fit-content;
  border: 1px solid #1452ca;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #1452ca;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  text-wrap: nowrap;
  padding: 12px 32px;
  margin-left: 24px;
}

.tb-container {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: var(--color-thirty-four);
  color: var(--primary-color);
  height: 54px;
}

tbody tr {
  font-size: 16px;
}

tbody tr:last-child {
  border-bottom: 0;
}

tr.table-inner td {
  border-bottom: 1px solid var(--color-twenty);
  padding-top: 27px;
  padding-bottom: 27px;
  background-color: white;
  font-family: "PlusJakartaSans-SemiBold";
}

.comment-td {
  font-family: "PlusJakartaSans-Regular" !important;
}

.first-head,
.table-inner-inner {
  padding-left: 24px;
}

.table-inner-inner {
  padding-right: 24px;
}

thead th {
  text-align: left;
  font-size: 16px;
  font-family: "PlusJakartaSans-SemiBold";
}

.other-head,
.last-head {
  padding-right: 30px;
}

.other-other-head {
  /* padding-left: 20px; */
}

.switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.rsdnh {
  margin-top: 32px;
  margin-bottom: 50px;
  font-size: 16px;
  font-family: "PlusJakartaSans-Regular";
  color: var(--primary-color);
}

.report-domain-btn {
  font-family: "PlusJakartaSans-Bold";
  color: var(--error-color);
  cursor: pointer;
}

.report-container-tle {
  font-size: 20px;
  font-family: "PlusJakartaSans-SemiBold";
  color: var(--color-four);
  margin-bottom: 4px;
}

.report-container-stle {
  font-size: 16px;
  font-family: "PlusJakartaSans-Regular";
  color: var(--color-three);
  font-weight: 400;
  margin-bottom: 40px;
}

.report-input-container {
  padding: 32px;
  box-sizing: content-box;
  flex: 1;
}
#report-container {
  padding: 0 !important;
  margin: 0;
}
.error-modal {
  display: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ff4d4d;
  background-color: #fff0f0;
  color: #b30000;
  border-radius: 8px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(255, 77, 77, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

/* Error icon inside modal */
.error-modal svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: #ff4d4d;
}
.iziToast {
  position: fixed !important;
  top: 10px !important;
  right: 0 !important;
  transform: none !important;
  margin-right: 0 !important;
}

.formBox input,
textarea {
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;

  resize: none;
  padding: 12px 24px;
  background: transparent;
}
.formBox {
  width: 100%;
  height: fit-content;
}
.report-input {
  height: 48px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 8px;
  font-family: "PlusJakartaSans-Regular";
  border: 0.3px solid rgba(115, 115, 115, 0.3);
  padding-left: 17px;
  margin-bottom: 16px;
}

.report-input:focus {
  outline: 0.3px solid var(--color-twenty-seven);
}

.close-report-container-btn,
.report-container-btn {
  width: 100%;
  box-sizing: border-box;
  height: 46px;
  font-size: 16px;
  font-family: "PlusJakartaSans-ExtraBold";
  border: none;
}

.close-report-container-btn {
  background-color: transparent;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.report-container-btn {
  background-color: var(--color-thirty-five);
  margin-bottom: 8px;
  border-radius: 8px;
  color: var(--error-color);
}

.domain-cl-bk-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 21px;
  background-color: transparent;
  border: none;
}

.domain-cl-bk-icon {
  width: 12px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-cl-bk-icon > img {
  height: 100%;
  width: 100%;
}

.domain-cl-bk-btn-tle {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 16px;
  color: var(--primary-color);
}

@media only screen and (max-width: 760px) {
  thead th,
  tbody tr {
    font-size: 12px;
  }
  .domain-discription {
    flex-direction: column;
    justify-content: start;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
   
    gap: 12px;
  
  }
  .block-domain-btn{
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 170px;
    height:44px ;
    font-size: 14px;
  }
  .domain-discription p{
    font-size: 14px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans";
    line-height: 140%;
  }
}

@media only screen and (max-width: 550px) {
  table {
    width: 530px;
  }

  .domains-hd-cont {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .domains-hd {
    font-size: 16px;
  }

  .domain-hd-cont-inner > p,
  .domain-hd-cont-inner > a {
    font-size: 12px;
  }

  .first-head,
  .table-inner-inner {
    padding-left: 16px;
  }

  tr.table-inner td {
    padding-top: 18.5px;
    padding-bottom: 18.5px;
  }

  .report-container-tle {
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .report-input-container {
    padding-left: var(--mobile-padding);
    padding-right: var(--mobile-padding);
  }

  .report-container-stle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .report-input,
  .report-container-btn,
  .close-report-container-btn {
    height: 44px;
  }

  .report-container-btn {
    margin-bottom: 12px;
  }

  .close-report-container-btn {
    margin-bottom: 24px;
  }

  .domain-cl-bk-icon {
    width: 10px;
    height: 20px;
  }

  .domain-cl-bk-btn-tle {
    font-size: 12px;
  }

  .rsdnh {
    margin-top: 20px;
    font-size: 12px;
  }

  .report-input {
    font-size: 13px;
  }
}
