/* Ethnos360 Content Filter – Modal Styles */

#e360-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
#e360-modal.e360-visible { display: flex; align-items: center; justify-content: center; }

.e360-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.e360-dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 580px;
  width: 94%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  overflow: hidden;
  animation: e360-in .2s ease;
}
@keyframes e360-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.e360-dialog-header {
  background: #2c6e49;
  color: #fff;
  padding: 20px 24px 16px;
}
.e360-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.e360-brand {
  font-size: .82em;
  opacity: .85;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.e360-dialog-header h2 {
  margin: 0;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
}

.e360-dialog-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}
.e360-dialog-body p { margin: 0 0 12px; color: #333; }

.e360-flags-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.e360-flag {
  border-radius: 8px;
  padding: 12px 14px;
  border-left: 4px solid #ddd;
}
.e360-flag-block { background: #fff5f5; border-left-color: #c0392b; }
.e360-flag-alert { background: #fffbec; border-left-color: #f39c12; }

.e360-flag-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.e360-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .72em;
  font-weight: 700;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.e360-badge-block { background: #c0392b; color: #fff; }
.e360-badge-alert { background: #f39c12; color: #fff; }

.e360-word {
  background: rgba(0,0,0,.07);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
  color: #222;
}

.e360-reason {
  margin: 0 0 4px !important;
  font-size: .87em;
  color: #444 !important;
}

.e360-context {
  margin: 0 !important;
  font-size: .8em;
  color: #888 !important;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.e360-contact-box {
  background: #f0f7f4;
  border: 1px solid #c3e6d8;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9em;
  color: #2c5f42;
  line-height: 1.6;
}
.e360-contact-box a { color: #2c6e49; font-weight: 600; }

.e360-dialog-footer {
  padding: 14px 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.e360-btn-close {
  background: #2c6e49;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: .95em;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.e360-btn-close:hover { background: #245a3c; }
