.moseo_containerr {
  width: 100%;
  margin: 20px;
}


.moseo_notice {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 0.5rem;
}

.moseo_notice.success {
  background: #d1fae5;
  color: #065f46;
}

.moseo_notice.error {
  background: #fee2e2;
  color: #b91c1c;
}

.moseo_reports-section {
  margin: 36px 0 0;
}

.moseo_reportText {
  font: 500 24px/1 "SF Pro Display";
  margin: 0 0 16px;
}
.moseo_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  background: #fff;
  padding: 0.5rem 2rem;
  position: sticky;
}

.moseo_selection {
  width: 40%;
  display: flex;
  align-items: center;
}
.moseo_selection .items-selected {
  font-size: 14px;
  margin: 0 10px;
}

.moseo_selection button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.moseo_delete:disabled, .moseo_download-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.3;
}

.moseo_pagination {
  display: flex;
  align-items: center;
}

.moseo_pagination #pagination-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  font: 400 14px/24px "SF Pro", sans-serif;
  color: #1e1e1e;
}
.moseo_pagination-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.moseo_pagination-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
h1.moseo_scan-modal-bottom-title {
  font: 600 20px/1 "SF Pro Display";
  text-align: center;
  color: #1e1e1e;
  margin: 1rem 0 0;
  letter-spacing: var(--moseo-letter-spacing);
}
.moseo_pagination-dropdown-btn svg {
  width: 8px;
  height: 5px;
  transition: transform 0.2s ease;
}

.moseo_pagination-dropdown-btn.active svg {
  transform: rotate(180deg);
}

.moseo_pagination-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 50px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
}

.moseo_pagination-dropdown-menu.show {
  display: block;
}

.moseo_pagination-dropdown-menu-item {
  display: block;
  padding: 2px 10px;
  font: 400 14px/24px var(--moseo-font-family);
  color: #1e1e1e;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

.moseo_pagination-dropdown-menu-item:hover {
  background-color: #f5f5f5;
}
.moseo_pagination-dropdown-menu-item.active {
  background-color: #e4e4e4;
  color: #303030;
  font-weight: 500;
}

.moseo_pagination #total-pages {
  font: 400 14px/24px "SF Pro", sans-serif;
  color: #1e1e1e;
}

.moseo_prev,
.moseo_next {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.moseo_empty-state {
  background: #F0F0F0;
  border-radius: 12px;
  display: flex;
  padding: 16px 0 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.moseo_empty-state-title {
  margin: 0;
  color: #757575;
  text-align: center;
  font: 400 24px/1 "SF Pro Display";
}

.moseo_empty-state-description {
  color: #757575;
    text-align: center;
    font: 16px / 1.5 "SF Pro Display";
    max-width: 45%;
    margin: 0;
    letter-spacing: var(--moseo-letter-spacing);
}

/* Scan Modal Styles */
.moseo_scan-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.moseo_scan-modal.show {
  display: flex;
}

.moseo_scan-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 13px;
  padding: 24px 36px;
  max-width: 593px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.moseo_scan-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.moseo_scan-modal-title-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

h3.moseo_scan-modal-title {
  font: 600 24px/24px "SF Pro Display";
  color: #1e1e1e;
  margin: 0;
  letter-spacing: var(--moseo-letter-spacing);
}

.moseo_scan-modal-description {
  font: 400 14px/24px "SF Pro Display";
  color: #949494;
  margin: 0;
  letter-spacing: var(--moseo-letter-spacing);
}

.moseo_scan-modal-close {
  cursor: pointer;
  background: transparent;
  border: none;
}
.moseo_scan-modal-divider {
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 24px;
}

.moseo_scan-modal-stop-btn {
  color: #0052cc;
  font: 500 14px/24px var(--moseo-font-family);
}
.moseo_scan-modal-progress-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.moseo-modal-delete-report-message {
  font: 500 14px/24px var(--moseo-font-family);
  color: #1e1e1e;
  margin: 1rem 0 0;
  letter-spacing: var(--moseo-letter-spacing);
}

.moseo_scan-modal-progress-container {
  background: #e0e0e0;
  height: 12px;
  border-radius: 53px;
  overflow: hidden;
  position: relative;
}
.moseo_scan-modal-status {
  font: 400 14px/24px "SF Pro Display";
  color: #757575;
  letter-spacing: var(--moseo-letter-spacing);
}

.moseo_scan-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

/* Custom Checkbox Styles */
.moseo-broken-link-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}


.moseo-broken-link-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.moseo-broken-link-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #ffffff;
  border: 1.5px solid #949494;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.moseo-broken-link-checkbox input[type="checkbox"]:checked ~ .moseo-broken-link-checkmark {
  background: #0052cc;
  border-color: #0052cc;
}

.moseo-check-icon {
  display: none;
  width: 10px;
  height: 9px;
}

.moseo-broken-link-checkbox input[type="checkbox"]:checked ~ .moseo-broken-link-checkmark .moseo-check-icon {
  display: block;
}

.moseo-broken-link-checkbox:hover .moseo-broken-link-checkmark {
  border-color: #0052cc;
}