/* Update Body/Main Wrapper Background if needed, assumed inherited */

/* Grid Layout */
.bulk-grid-container {
  display: grid;
  grid-template-columns: 40% 58%;
  /* Approx match */
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

/* Left Column */
.bulk-left-col {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
}

.bulk-main-title {
  font-family: 'Inter_18pt-Bold', sans-serif;
  font-size: 32px;
  color: black;
  margin-bottom: 12px;
  margin-top: 0;
}

.bulk-main-desc {
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
  margin: 0;
}


/* Right Column */
.bulk-right-col {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 16px;
}

.how-it-works-title {
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  font-size: 16px;
  color: #252525;
  margin-bottom: 4px;
  margin-top: 0;
}

.how-it-works-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 0;
}

.how-it-works-list li {
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 16px;
  color: #252525;
  margin-bottom: 8px;
  line-height: 1.5;
}

.how-it-works-list li strong {
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  color: #101828;
}

.form-label-text {
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 16px;
  color: #252525;
  margin-bottom: 8px;
}

.bulk-verification-form {
  display: flex;
  flex-direction: column;
}

.bulk-input-wrapper {
  margin-bottom: 8px;
}

.bulk-textarea {
  width: 100%;
  border: 1px solid #D0D5DD;
  background: #F9FAFB;
  /* Light grey bg inside input as per typical design, or white */
  background: #FFFFFF;
  /* Image looks white/light */
  border-radius: 8px;
  padding: 12px;
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 14px;
  color: #101828;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}

.bulk-textarea:focus {
  border-color: #1452CA;
  box-shadow: 0 0 0 4px #F2F4F7;
}

.bulk-hint-text {
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 16px;
  color: #737373;
  margin-bottom: 8px;
  margin-top: 0;
}

.bulk-verify-domain-btn {
  background-color: #1452CA;
  color: #FDFDFD;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  height: 50px;
  font-family: 'Inter_18pt-Bold', sans-serif;
  font-size: 16px;
  cursor: pointer;
  width: max-content;
}

.bulk-verify-domain-btn:hover {
  background-color: #1040A0;
  /* Slight darken on hover */
}


/* Upgrade Banner Styles */
.upgrade-banner {
  background: #FFFFFF;
  border-radius: 12px;
  /* Or 12px */
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  /* subtle border or shadow? Image looks like it might have a border or separate card */
  background: #FFFFFF;
  width: 100%;
  box-sizing: border-box;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon img {
  width: 100%;
  height: 100%;
}


.banner-text {
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  /* "You are currently..." looks bold/semibolds */
  font-size: 16px;
  color: #252525;
  /* Dark text */
  margin: 0;
}

.banner-btn {
  background-color: #1452CA;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.banner-btn:hover {
  opacity: 0.9;
}


/* Results Table Styles */
.dash-inner-inner-verification-status {
  width: 100%;
  margin-top: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0;
  box-sizing: border-box;
}

.verify-status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.result-header-title {
  font-family: 'Inter_18pt-Bold', sans-serif;
  font-size: 24px;
  color: #101828;
  margin: 0;
}

.bulk-domain-download {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  font-size: 14px;
  color: #344054;
  transition: background-color 0.2s;
}

.bulk-domain-download:hover {
  background-color: #F9FAFB;
}

.bulk-domain-download p {
  margin: 0;
}

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

.bulk-results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}


.bulk-results-table th {
  text-align: left;
  padding: 16px 24px;
  background-color: #F7F7F7;
  color: #252525;
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  font-size: 16px;
  /* text-transform: uppercase; Removed for Title Case per design */
  border-bottom: 1px solid #EAECF0;
}

.bulk-results-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #EAECF0;
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 14px;
  color: #475467;
  vertical-align: middle;
}

.bulk-results-table tr:last-child td {
  border-bottom: none;
}


/* Pagination Styles */
.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #EAECF0;
  margin-top: 0;
  padding: 16px;
  /* Table has border bottom usually, but here container padding handles it */
}

.pagination-select-container {
  position: relative;
}

.pagination-select {
  appearance: none;
  padding: 8px 32px 8px 12px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  background: #FFFFFF;
  font-family: 'Inter_28pt-SemiBold', sans-serif;
  font-size: 14px;
  color: #344054;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  /* Square with radius */
  background: #FFFFFF;
  cursor: pointer;
}

.page-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-btn img {
  transform: rotate(180deg);
}

.page-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 14px;
  color: #475467;
  cursor: pointer;
  border-radius: 8px;
}

.page-number.active {
  background-color: #F9F5FF;
  /* Light purple/brand tinge */
  color: #7F56D9;
  /* Brand color? Using typical dashboard purple or blue */
  /* Let's use Brand Blue if consistent */
  background-color: #EFF8FF;
  color: #1452CA;
  font-family: 'Inter_28pt-SemiBold', sans-serif;
}

.page-dots {
  padding: 0 8px;
  color: #475467;
}


/* Responsive */
@media only screen and (max-width: 1000px) {
  .bulk-grid-container {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }

  .upgrade-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px !important;
  }

  .banner-btn {
    width: max-content;
    text-align: center;
    font-size: 14px;
  }

  .banner-text {
    font-size: 14px;
  }

  .bulk-main-desc {
    font-size: 12px;
  }


  .banner-icon {
    display: none;
  }

  .bulk-main-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .how-it-works-list li {
    font-size: 14px;
  }

  .form-label-text {
    font-size: 14px;
  }

  .bulk-hint-text {
    font-size: 12px;
  }

  /* Removed column override for table-pagination per user request to never be col */

}


.hidden {
  display: none !important;
}

/* Mind-blowing Empty State Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 82, 202, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(20, 82, 202, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 82, 202, 0);
  }
}

.empty-state-animated {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.empty-state-icon-wrapper {
  background: linear-gradient(135deg, #F0F4FF 0%, #FFFFFF 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid #E4E7EC;
  animation: float 3s ease-in-out infinite, pulse-glow 2s infinite;
}

.empty-state-icon-wrapper img {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.empty-state-text {
  font-family: 'Inter_18pt-Bold', sans-serif;
  font-size: 18px;
  color: #101828;
  margin-bottom: 8px;
  text-align: center;
}

.empty-state-subtext {
  font-family: 'Inter_28pt-Regular', sans-serif;
  font-size: 14px;
  color: #667085;
  text-align: center;
  max-width: 300px;
  line-height: 1.5;
}