/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/summary-to-table/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===============================
   SUMMARY TO TABLE — MAIN LAYOUT
================================= */
.wp-block-custom-summary-to-table .input-contributions,
.wp-block-custom-summary-to-table .delayed-documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.wp-block-custom-summary-to-table .input-contributions > div > *,
.wp-block-custom-summary-to-table .delayed-documents > div > * {
  margin-bottom: 1em;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.wp-block-custom-summary-to-table .input-contributions > div > *:hover,
.wp-block-custom-summary-to-table .delayed-documents > div > *:hover {
  background-color: #f4faff;
}

.wp-block-custom-summary-to-table .input-contributions > div > span:empty::before,
.wp-block-custom-summary-to-table .delayed-documents > div > span:empty::before {
  content: "✗";
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
}

.wp-block-custom-summary-to-table a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  vertical-align: middle;
  background-image: url("https://itu.int/wrs-24/wp-content/uploads/sites/44/2024/03/file-and-paper.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .wp-block-custom-summary-to-table .input-contributions,
  .wp-block-custom-summary-to-table .delayed-documents {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
}
.wp-block-custom-summary-to-table .extracted-action {
  background: #f9f9f9;
  padding: 1em;
  border-left: 4px solid #007cba;
  margin-bottom: 2em;
}

.extracted-action {
  padding: 1rem;
  margin-bottom: 2rem;
}

.extracted-action ul {
  padding-left: 1.5rem;
}

/* ===============================
   MODAL — Summary Extract Viewer
================================= */
.summary-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.summary-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.summary-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  min-width: 400px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: system-ui, sans-serif;
  transform: translateY(-10px) scale(0.97);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease-out;
  z-index: 10000000 !important;
}

.summary-modal-overlay.open .summary-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ===== Header ===== */
.summary-header {
  background-color: rgb(229, 245, 251);
  padding: 12px 16px;
  border-bottom: 2px solid #009dd9;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.summary-title {
  font-size: 1em;
  font-weight: 800;
  margin: 0;
  color: #004f6e;
}

.summary-close {
  font-size: 24px;
  cursor: pointer;
  font-weight: 700;
  border: none;
  background: none;
  line-height: 1;
  color: #004f6e;
  transition: transform 0.2s ease, color 0.2s ease;
}

.summary-close:hover {
  transform: scale(1.2);
  color: #009dd9;
}

/* ===== Scrollable Content ===== */
.summary-scroll {
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px;
}

.summary-body p {
  padding: 0 10px;
  text-align: left !important;
}

.summary-spinner {
  text-align: center;
  padding: 2em;
  color: #009dd9;
  display: none;
}

/* =============================
   ITU TABLE CLEAN + MODAL STYLE
============================= */
.summary-body .itu-table {
  overflow-x: auto;
  padding: 1em;
}

.summary-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.summary-body th,
.summary-body td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
  color: #333;
}

.summary-body th {
  background-color: #009dd9;
  color: #fff;
  font-weight: 600;
}

.summary-body tr:nth-child(even) {
  background-color: #f9f9f9;
}

.summary-body tr:hover {
  background-color: #e9f6fc;
}

.summary-body a {
  color: #0073aa;
  font-weight: 500;
  text-decoration: none;
}

.summary-body a:hover {
  text-decoration: underline;
}

.summary-body td[colspan="3"] {
  background: #f4faff;
  font-weight: bold;
  color: #005c7a;
  border-top: 2px solid #009dd9;
}

/* =============================
   ACCESSIBILITY + SCROLLBAR
============================= */
.summary-scroll::-webkit-scrollbar {
  width: 8px;
}

.summary-scroll::-webkit-scrollbar-thumb {
  background: #d6eaf3;
  border-radius: 4px;
}

.summary-scroll::-webkit-scrollbar-thumb:hover {
  background: #a7d1e4;
}

.summary-modal-overlay,
.summary-content {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: #333;
}

/*# sourceMappingURL=style-index.css.map*/