.missing-kind-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 12px 0 10px;
  }
  .missing-kind-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.5);
    color: #e5e7eb;
    font-weight: 900;
    cursor: pointer;
    user-select: none;
    min-width: 220px;
  }
  .missing-kind-btn input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #60a5fa;
  }
  .missing-kind-btn.found { border-color: rgba(34, 197, 94, 0.35); }
  .missing-kind-btn.lost { border-color: rgba(245, 158, 11, 0.35); }
  .missing-kind-btn.active {
    border-color: rgba(59, 130, 246, 0.55);
    background: rgba(59, 130, 246, 0.10);
  }

  body.page-missing-found-theme .missing-kind-btn.found.active {
    border-color: rgba(34, 197, 94, 0.65) !important;
    background: rgba(34, 197, 94, 0.18) !important;
  }
  body.page-missing-found-theme .missing-kind-btn.lost {
    opacity: 0.6;
  }

  body.page-missing-found-theme .card {
    border-color: rgba(34, 197, 94, 0.35) !important;
  }

  body.page-missing-found-theme #missing-submit-btn {
    border-color: rgba(34, 197, 94, 0.65) !important;
    background: rgba(34, 197, 94, 0.22) !important;
    color: #d1fae5 !important;
  }

  .custom-pin-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }
  .custom-pin-modal-backdrop.is-open { display: flex; }
  .custom-pin-modal-panel {
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    background: #0f172a;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    animation: modal-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes modal-pop {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .custom-pin-modal-header { padding: 16px 20px 14px; text-align: center; }
  .custom-pin-modal-header h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #f8fafc;
    font-weight: 900;
  }
  .custom-pin-modal-header p {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
  }
  .custom-pin-map-wrap { height: 320px; width: 100%; min-height: 280px; }
  .custom-pin-modal-actions {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    justify-content: center;
  }
  .custom-pin-modal-actions button {
    flex: 1;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .custom-pin-modal-cancel {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(30, 41, 59, 0.6);
    color: #e5e7eb;
  }
  .custom-pin-modal-cancel:hover { background: rgba(51, 65, 85, 0.8); }
  .custom-pin-modal-confirm {
    border: 1px solid rgba(56, 189, 248, 0.5);
    background: rgba(56, 189, 248, 0.2);
    color: #bae6fd;
  }
  .custom-pin-modal-confirm:hover { background: rgba(56, 189, 248, 0.3); }

  body.page-missing .yh-situation-form {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.45);
  }
  body.page-missing .yh-situation-form__legend {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
  }
  body.page-missing .yh-situation-form__hint {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.4;
  }
  body.page-missing .yh-situation-form__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  body.page-missing .yh-situation-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(15, 23, 42, 0.35);
  }
  body.page-missing .yh-situation-option input {
    margin-top: 3px;
    accent-color: #38bdf8;
    flex-shrink: 0;
  }
  body.page-missing .yh-situation-option__text strong {
    display: block;
    font-size: 0.88rem;
    color: #e5e7eb;
    font-weight: 800;
  }
  body.page-missing .yh-situation-option__text span {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.35;
  }