/* صفحة رفع البلاغ — تخطيط صفحة كامل */
.report-page-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.report-page-hero {
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.report-page-hero h1 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}
.report-page-hero p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}
.report-page-card {
  border-radius: 14px;
  border: 1px solid var(--bs-border-color, rgba(255,255,255,.1));
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  background: var(--bs-body-bg);
}
.report-page-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.report-page-steps .rm-step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--bs-border-color, rgba(255,255,255,.12));
  transition: background 0.3s;
}
.report-page-steps .rm-step.active { background: #ef4444; }
.report-page-steps .rm-step.done { background: #22c55e; }
/* صف الهاتف: LTR — مفتاح الدولة يسار، الرقم يمين (داخل كتلة أرقام) */
.phone-cc-group {
  width: 100%;
}
.phone-cc-row-ltr {
  display: grid;
  /* الدولة أصغر بوضوح من الرقم (تقريباً 35% / 65%) */
  grid-template-columns: minmax(8.75rem, 0.85fr) minmax(0, 1.65fr);
  align-items: end;
  gap: 0.5rem;
  width: 100%;
}
.phone-cc-prefix {
  width: 100%;
  min-width: 0;
  position: relative;
}
.phone-cc-national {
  width: 100%;
  min-width: 0;
}
.phone-cc-input-digits {
  font-family: ui-monospace, monospace, system-ui;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.phone-country-picker-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
}
.phone-country-toggle {
  flex: 1 1 auto;
  width: 100%;
  min-width: 6.25rem;
  border: 1px solid var(--bs-border-color, rgba(255,255,255,.2));
  background: var(--bs-tertiary-bg, rgba(255,255,255,.04));
  color: inherit;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0 0.55rem;
  height: 2.4rem;
}
.phone-country-flag {
  font-size: 1rem;
  line-height: 1;
}
.phone-country-code-fixed {
  font-family: ui-monospace, monospace, system-ui;
  font-size: .92rem;
  letter-spacing: .02em;
}
.phone-country-arrow {
  font-size: 0.7rem;
  opacity: .8;
}
.phone-country-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 30;
  border: 1px solid var(--bs-border-color, rgba(255,255,255,.2));
  border-radius: 0.75rem;
  background: var(--bs-body-bg);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  padding: 0.5rem;
}
.phone-country-search {
  margin-bottom: 0.45rem;
}
.phone-country-options {
  max-height: 260px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.phone-country-option {
  border: none;
  background: transparent;
  color: inherit;
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1.7rem 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
}
.phone-country-option:hover,
.phone-country-option:focus-visible {
  background: rgba(59,130,246,.12);
  outline: none;
}
.phone-country-option-flag {
  font-size: 1.05rem;
}
.phone-country-option-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-country-option-code {
  font-family: ui-monospace, monospace, system-ui;
  opacity: .85;
}
html[dir="rtl"] .phone-cc-group .phone-cc-row-ltr label.text-end {
  text-align: right !important;
}
@media (max-width: 576px) {
  .report-page-hero { padding: 1rem; }
  .phone-cc-row-ltr {
    grid-template-columns: 1fr;
  }
}
