.admin-profile-photo-wrap {
  width: 142px;
  height: 142px;
  padding: 5px;
  border: 1px solid #cfdce8;
  border-radius: 24px;
  background: linear-gradient(145deg,#fff,#edf5fa);
  box-shadow: 0 14px 35px rgba(24,61,88,.12);
}
.admin-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
  background: #fff;
}
.admin-person-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d8e5ee;
  border-radius: 13px;
  background: #eef5fa;
  color: #315f7e;
}
.admin-person-avatar img { width: 100%; height: 100%; object-fit: cover; }

#reportModal .modal-dialog {
  height: calc(100dvh - 2rem);
  max-height: calc(100dvh - 2rem);
  margin: 1rem auto;
}
.report-modal-content {
  display: flex;
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(16,47,74,.28);
}
.report-modal-content > form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  max-height: calc(100dvh - 2rem);
}
.report-modal-content .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.report-modal-content .modal-footer {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  padding: 14px 20px;
  border-top: 1px solid #dbe5ed;
  background: #fff;
  box-shadow: 0 -10px 28px rgba(16,47,74,.08);
}
.report-modal-header {
  flex: 0 0 auto;
  padding: 24px 28px;
  border: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(54,170,214,.35), transparent 34%),
    linear-gradient(135deg,#0f2e48,#174b6d);
}
.report-field-group {
  padding: 18px;
  border: 1px solid #d8e4ed;
  border-radius: 15px;
  background: linear-gradient(180deg,#fff,#f7fafc);
}
.report-field-group strong { color: #163b58; }
.report-format-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.report-format-option { position: relative; cursor: pointer; }
.report-format-option input { position: absolute; opacity: 0; pointer-events: none; }
.report-format-option span {
  display: grid;
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid #d6e2eb;
  border-radius: 14px;
  background: #f8fbfd;
  transition: .16s ease;
}
.report-format-option i { margin-bottom: 5px; color: #2b739a; font-size: 1.15rem; }
.report-format-option strong { color: #173b57; }
.report-format-option small { color: #6b7f90; }
.report-format-option input:checked + span {
  border-color: #2087b5;
  background: #eaf7fc;
  box-shadow: 0 0 0 3px rgba(32,135,181,.12);
}
.report-format-option input:focus-visible + span { outline: 3px solid rgba(32,135,181,.25); }
.form-control.is-valid, .form-select.is-valid { border-color: #55a47a; background-image: none; }
.form-control.is-invalid, .form-select.is-invalid { border-color: #c94e59; background-image: none; }

.admin-backbar-wrap {
  width: 100%;
  border-bottom: 1px solid rgba(39,77,112,.10);
  background: rgba(244,247,251,.94);
  backdrop-filter: blur(10px);
}
.admin-backbar {
  display: flex;
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding: 9px 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.admin-backbar .admin-btn { min-height: 36px; padding: 7px 12px; }

@media (max-width: 767.98px) {
  #reportModal .modal-dialog {
    width: calc(100% - 12px);
    height: calc(100dvh - 12px);
    max-height: calc(100dvh - 12px);
    margin: 6px auto;
  }
  .admin-profile-photo-wrap { width: 116px; height: 116px; margin-inline: auto; }
  .report-format-options { grid-template-columns: 1fr; }
  .report-modal-header { padding: 20px; }
  .report-modal-content,
  .report-modal-content > form { max-height: calc(100dvh - 12px); }
  .report-modal-content { border-radius: 16px; }
  .report-modal-content .modal-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .report-modal-content .modal-footer .admin-btn { width: 100%; }
  .report-modal-content .modal-footer small { margin-bottom: 4px; }
  .admin-backbar { width: min(100% - 20px, 1480px); }
}
