/* /public/assets/css/pages.css */

/* ---------- Theme override: switch brand to red ---------- */
:root{
    --brand-900:#7f1d1d;
    --brand-700:#FB2C36;   /* primary red */
    --brand-500:#ef4444;
    --brand-300:#fca5a5;
    --brand-100:#feeaea;   /* soft hero background */
  }
  
  /* ---------- Buttons (outline variant to match screenshot) ---------- */
  .btn-outline{
    background:#fff;
    color:var(--brand-700);
    border-color:var(--brand-700);
    margin: 100px 0 !important;
  }
  .btn-outline:hover{
    background:var(--brand-100);
  }

.jmargin{
  margin-top:100px !important;
}

  
  /* ---------- Hero styles ---------- */
  .hero--soft{
    background:var(--brand-100);
   
  }
  .hero-wrap{
    padding-block: clamp(48px, 10vw, 110px);
    text-align:center;
  }
  .hero-title{
    font-size: clamp(36px, 6vw, 64px);
    line-height:1.1;
    font-weight:700;
    color:#0f172a;
    margin-bottom: 16px;
  }
  .hero-title .accent{
    color: #DC2626 !important;
  }
  .hero-sub{
    max-width: 700px;
    margin: 50px auto;
    color: #475569;
    font-size: 22px !important ;
  }
  .hero-ctas{
    display:flex; gap:16px; justify-content:center; margin-top:24px;
  }
  .btn-ctas{
    padding: 8px 32px;
  }
  .cta-signup{
    background-color: #FB2C36;
    padding: 10px 30px;
  }
  .cta-profile{
    border: 2px solid #ff000d;
  }


/* create-profile */

/* Wizard navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding: 0 12px;
  gap: 16px;
}

/* STEP NAV — fix cut icons */
.wizard-nav { display:flex; justify-content:space-between; gap:16px; }

.step-tab{
  padding: 3px 9px !important;
  border: 1px solid #FDE4F0 !important;
  background:transparent !important;
  display:flex;
 
  align-items:center;
  /* gap:6px; */
  cursor:pointer;
  color:#9ca3af;
}
.profile-form{
  /* width:650px; */
  
}
.step-icon{
  width:40px;                 /* give the circle real space */
  height:40px;
  border:2px solid #e5e7eb;
  border-radius:50%;
  display:flex;               /* perfect center */
  align-items:center;
  justify-content:center;
  background:#f9fafb;
  line-height:0;              /* prevent inline height from pushing/cropping */
}

.step-icon svg{
  width:20px;                 /* smaller than the circle */
  height:20px;
  display:block;              /* no extra inline box */
  overflow:visible;           /* just in case */
}

.step-label{ font-size:13px; font-weight:500; }

/* active state */
.step-tab.active{ color:#111827; font-weight:600; }
.step-tab.active .step-icon{ border-color:#FB2C36; background:#fff; }
.step-tab.active svg{ color:#FB2C36; }

.backremove{
  background-color: transparent !important;
}
.btn-prev{
  background: #F9FAFB !important;
}

  
  
  /* ---------- Feature badges under CTAs ---------- */
  .feature-row {
    display: flex;
    gap: 40px;                  /* more breathing room between features */
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    flex-wrap: wrap;
  }
  
  .feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #334155;             /* dark gray text */
    font-size: 15px;
  }
  


  /* pagination  */
  /* Pager wrap */
.mm-pager{
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center; justify-content:center;
  padding:10px 0;
}

/* Base button */
.mm-page-btn{
  --brand: var(--brand-700, #0b3b2e);
  --brand-ink: var(--on-brand, #ffffff);
  --ring: 0 0 0 3px rgba(11,59,46,.15);

  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 44px; height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}

/* Number buttons */
.mm-page-btn:not(.prev):not(.next){
  padding-inline: 12px;
}

/* Icon arrows for prev/next via data attrs */
.mm-page-btn.prev::before,
.mm-page-btn.next::after{
  content:"";
  width: 16px; height: 16px;
  mask-size: cover; -webkit-mask-size: cover;
  background: currentColor;
}
.mm-page-btn.prev{ padding-left: 12px; padding-right: 14px; }
.mm-page-btn.next{ padding-left: 14px; padding-right: 12px; }
.mm-page-btn.prev::before{ margin-right: 8px; mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 3L5 8l6 5'/></svg>"); }
.mm-page-btn.next::after{ margin-left: 8px;  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 3l6 5-6 5'/></svg>"); }

/* Hover / Active */
.mm-page-btn:hover{
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
}
.mm-page-btn:active{
  transform: translateY(0);
}

/* Focus ring (keyboard friendly) */
.mm-page-btn:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

/* Current page */
.mm-page-btn.active{
  background: var(--brand);
  color: var(--brand-ink);
  border-color: var(--brand);
  box-shadow: 0 6px 14px rgba(11,59,46,.18);
}
.mm-page-btn.active:hover{
  background: var(--brand);
  transform: none;
}

/* Disabled */
.mm-page-btn.disabled{
  opacity: .45;
  cursor: not-allowed;
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #e5e7eb;
  box-shadow: none;
}

/* Compact on very small screens */
@media (max-width: 420px){
  .mm-page-btn{ height: 36px; min-width: 40px; padding: 0 10px; border-radius: 9px; }
}

  .feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ef4444;             /* red icons (Tailwind's red-500) */
  }
  
  


  /* Responsive for How It Works + Videos */
@media (max-width: 960px){
    .grid[style*="repeat(3"]{
      grid-template-columns:1fr !important;
    }
  }

  


  /* Accordion FAQ styles */
.accordion-item {
    /* border-bottom: 1px solid var(--border); */
    border:none;
  }
  .accordion-header {
    width: 100%;
    text-align: left;
    background:#C31F1F !important;
    color: #fff;
    padding: var(--s-4);
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 16px;
    font-weight:bold ;
  }
  .accordion-header::after {
    content: '▾';
    float: right;
    transition: transform 0.2s;
  }
  .accordion-header[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  .accordion-body {
    padding: var(--s-4);
    display: none;
    background: #fafafa;
  }
  .accordion-body p {
    margin: 0;
  }
  


  /* Register */

  /* ===== Auth (register/login) ===== */
.auth-hero{
    background: linear-gradient(135deg, #feeaea 0%, #fde2f3 50%, #fce7f3 100%);
    /* height:100% !important; */
    padding:30px 0 ;
    /* padding-block: clamp(40px, 8vw, 96px); */
  }
  .auth-wrap{ max-width: 480px; margin: 0 auto; }
  
  .auth-back a{ color:#334155; }
  .auth-back{ margin-bottom: 16px; }
  
  .auth-brand{ display:flex; align-items:flex-start; gap:12px; margin-bottom: 16px; }
  .auth-brand .brand-icon{
    width:40px; height:40px; display:grid; place-items:center;
    background:#fff; border-radius:999px; box-shadow: var(--shadow);
  }
  .auth-title{ font-weight:800; letter-spacing:.2px; color:#0f172a; }
  .auth-subtitle{ color:#334155; font-weight:500; padding: 0 !important;  font-size: 16px; }
  
  .auth-card{
    max-width: 480px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 16px;
  }
  .form-head{
font-size: 20px !important;
  }

  .form-subhead{
    font-size: 14px !important;
  }
  .logo-login{
    color:#DC2626;
    font-size: 30px;
  }

  .setred
  {
    color: #FB2C36 !important;
  }
  .auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;              /* space between arrow and text */
    color: #374151;        /* slate gray */
    text-decoration: none;
    font-size: 14px;
  }
  .auth-links{
    display:contents !important;
  }
  .auth-back-link:hover {
    text-decoration: underline;
  }
  
  
  .input-with-eye{ position:relative; }
  .input-with-eye .eye{
    position:absolute; right:8px; top:50%; transform:translateY(-50%);
    border:0; background:transparent; cursor:pointer; font-size:16px; padding:4px;
  }
  
  /* tighten input vertical rhythm on this page */
 
  
  .phone{
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
  }


  



 /* Our Vision styles */
.vision-section { padding: 56px 16px; }
.vision-wrap {  margin: 0 auto; }
.vision-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 30px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.vision-col-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 20px;
  color: #0f172a;
}

.vision-card {
  background: #fff1f2;       /* soft pink like your screenshot */
  border: 1px solid #ffe4e6;
  border-radius: 12px;
  padding: 18px 20px;
  color: #334155;
  line-height: 1.75;
  min-height: 200px;
}
.vision-para{
font-size: .875rem !important;
font-weight: 400;
color: #334155;
}

/* responsive */
@media (max-width: 1024px) {
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vision-grid { grid-template-columns: 1fr; }
  .vision-title { font-size: 28px; }
}



/* dashboard */
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Header */
/* Header wrapper */
.mmh {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  position: sticky !important;
  z-index: 5000 !important;
}

/* top row */
.mmh-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}

/* Brand left */
.mmh-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mmh-brand-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
}
.mmh-brand-icon svg {
  width: 28px; height: 28px; display: block;
}
.mmh-brand-text {
  color: #dc2626;         /* red like screenshot */
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
}

/* Avatar & dropdown */
.mmh-user {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mmh-avatar-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 999px;
}
.mmh-avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

/* Dropdown panel */
.mmh-menu {
  position: absolute;
  top: 46px;
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.10);
  padding: 10px;
  z-index: 40;
}


@media (min-width: 768px) {
  /* Desktop: show inline links, hide divider & bottom nav */
  .mmh-inline { display: flex; }
  .mmh-line { display: none; }
  .mmh-nav { display: none; }
}

@media (max-width: 767.98px) {
  /* Mobile: hide inline links, show divider + bottom centered nav */
  .mmh-inline { display: none; }
  .mmh-line {
    display: block;
    width: 90%;
    height: 1px;              /* thickness */
    background-color: silver; /* line color */
    margin: auto;
    border: none;             /* no border */
  }
  .mmh-nav  { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px 16px 12px;
    place-items: center;
  }

  /* icons above labels for larger tap targets */
  .mmh-link {
    flex-direction: column;
    padding: 8px 10px;
  }
}
.mmh-menu-head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 6px 6px 10px;
}
.mmh-menu-avatar {
  width: 40px; height: 40px; border-radius: 999px; object-fit: cover; border: 1px solid #e5e7eb;
}
.mmh-menu-name { font-weight: 700; color: #111827; }
.mmh-menu-mail { font-size: 13px; color: #6b7280; margin-top: 2px; }

.mmh-menu-sep {
  height: 1px; background: #e5e7eb; margin: 6px -10px;
}

.mmh-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  text-decoration: none;
  color: #111827;
  border-radius: 8px;
}
.mmh-menu-item:hover {
  background: #f3f4f6;
}
.mmh-menu-item.mmh-danger { color: #ef4444; }
.mmh-menu-item.mmh-danger:hover { background: #fff1f2; }

.mmh-menu-icon {
  width: 18px; height: 18px; color: #6b7280;
}

.mmh-inline { display: flex; gap: 16px; }   /* inline links next to avatar */
.mmh-line,
.mmh-nav  { display: none !important; } 

@media (max-width: 767.98px) {
  .mmh-inline { display: none !important; } /* hide inline links on mobile */

  .mmh-line   { display: block !important; }           /* show thin divider */
  .mmh-nav    {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px 16px 12px;
    place-items: center;
  }

  /* bigger tap targets on mobile: icon above text */
  .mmh-link {
    flex-direction: column;
    padding: 8px 10px;
  }
}
/* bottom nav row */
.mmh-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 16px 12px;
  place-items: center;
}

/* nav item */
.mmh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.mmh-link svg { width: 18px; height: 18px; color: #6b7280; }
.mmh-link:hover { background: #f3f4f6; color: #111827; }
.mmh-link.is-active {
  color: #ef4444;
  background: #fff1f2;  /* light red pill like screenshot */
}
.mmh-link.is-active svg { color: #ef4444; }

/* on narrow screens, stack icon above text for better tap targets */
@media (max-width: 640px) {
  .mmh-link {
    flex-direction: column;
    padding: 8px 10px;
  }
}

/* on wider screens, center the row under brand like screenshot */
@media (min-width: 768px) {
  .mmh-nav { max-width: 520px; margin: 0 auto 6px; }
}


/* Main Section */
.dashboard-container {
  padding: 30px;
}

.dashboard-welcome {
  text-align: center;
  margin-bottom: 30px;
}

.dashboard-welcome h1 {
  font-size: 2em;
  color: #111827;
}

.dashboard-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;

  width: 100%;
}

/* .card h2 {
  color: #111827;
}

.card p {
  color: #6b7280;
}

.card a {
  text-decoration: none;
  color: #ef4444;
  font-weight: bold;
  font-size: 1.2em;
} */

/* Footer */
.dashboard-footer {
  text-align: center;
  padding: 10px;
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  bottom: 0;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
}

.dashboard-footer p {
  color: #6b7280;
}




/* search  */
/* Basic Reset */
/* pages.css */

/* pages.css */

/* General body and container styling */
body {
  
  background-color: #f7fafc;
  font-family: 'Arial', sans-serif;
  color: #333;
}


.search-profiles {
  padding: 20px;
  background-color: #fff;

}
.fontset{
  font-size: 14px;
  font-weight: 600;
}

.search-profiles .container-fluid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left filter panel */
.search-filters {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: max-content !important;
}

.search-filters h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #2d3748;
}

.search-filters input,
.search-filters select,
.search-filters button {
  width: 100%;
 
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background-color: #f7fafc;
}

.search-filters input[type="range"] {
  width: 100%;
  cursor: pointer;
}

.search-filters button {
  background-color: #f44d58;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-filters button:hover {
  background-color: #e43946;
}

/* Profile cards section */
.profiles {
  flex: 1;
  padding-left: 20px;
}

.profiles h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.profiles .profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.profile-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px 15px 10px 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-card .profile-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.profile-card .profile-info p {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 8px;
}

.svg-color{
  color:#99A1AF !important;
}
.about-color{
 color: #4A5565;
}

.profile-card .view-profile {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #FB2C36;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.profile-card .view-profile:hover {
  background-color: #e43946;
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-profiles .container {
      flex-direction: column;
  }
  
  .search-filters {
     flex: none; 
     width: 100% !important;
  }
  .profile-cards{
    padding:0 !important;
  }
  .profiles{
    padding-left: 0 !important;
  }
  .search-profiles{
    padding: 20px 0 !important;
  }
  
  .search-filters {
      margin-bottom: 30px;
  }

  .profiles .profile-cards {
      grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .profiles .profile-cards {
      grid-template-columns: 1fr;
  }
}


/* Default Grid View */
.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    padding: 20px;
}

/* List View */
/* List View */
.profile-cards.list-view {
  display: block;
}

/* Apply Flexbox for List View */
.profile-cards.list-view .profile-card .profile-info {
display: flex !important;  /* Apply flex when in List View */
flex-direction: column;       /* Align items horizontally */
       /* Center align items vertically */
justify-content: space-between;  /* Add space between items */
}

.profile-cards.list-view .profile-card .profile-info p {
  
  margin: 0 !important;
  padding: 0 !important;
  
}


.profile-cards.list-view .profile-card{
  gap:15px !important;
  margin-bottom: 15px; 

}

/* Profile Info Styling */
.profile-cards.list-view .profile-card .profile-info h3 {
margin-right: 15px; /* Space between name and other details */
font-size: 16px;
font-weight: bold;
}
.profile-cards.list-view .profile-card {
  display: flex;
  align-items: center;
  padding: 10px !important;
  
}
.profile-cards.list-view .profile-card .p-img img {
  width: 60px !important;
  height: 60px !important;
}
.profile-cards.list-view .profile-card .p-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 0 !important;
}

.profile-cards.list-view .profile-card button{
  width: 60% !important;
}


.view-toggle {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 13px 20px;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.view-btn svg {
  stroke: #6c757d; /* default grey */
}

.view-btn.active {
  background: #ff3b3b; /* your red highlight */
}

.view-btn.active svg {
  stroke: #fff; /* white icon inside red */
}



/* dashboard */


/* Dashboard only styles (no :root, no body overrides) */

.mm-dash.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Header */
.mm-head { margin-bottom: 18px; }
.mm-title {
  font-size:30px;
  line-height: 1.2;
  color: #111827; /* dark slate */
  font-weight: 600;
  margin: 0;
}
.mm-sub {
  margin: 6px 0 0 0;
  color: #6b7280; /* grey */
  font-size: 14px;
}

/* Cards grid */
.mm-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .mm-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.mm-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.mm-card:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,.06), 0 10px 28px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* Card top row */
.mm-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mm-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.mm-card-corner {
  width: 20px;
  height: 20px;
  color: #9ca3af; /* grey icon */
}

/* Metric */
.mm-metric {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  margin: 8px 0 6px;
  color: #111827;
}

/* Trend info */
.mm-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #059669; /* green */
}
.mm-trend-icon {
  width: 16px;
  height: 16px;
  color: #059669;
}

/* Row with icon + title */
.mm-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mm-title-icon {
  width: 20px;
  height: 20px;
}
.mm-red { color: #ef4444; } /* red accent icon */

.mm-link-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.mm-link-title a {
  color: #111827;
  text-decoration: none;
}
.mm-link-title a:hover { text-decoration: underline; }

.mm-muted {
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
}




/* profile  */
/* Container */
.pp-wrap.container { max-width: 1100px; margin: 0 auto; padding: 20px 12px 60px; }

/* Card */
.pp-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 16px 0 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* Header card */
.pp-head { margin-bottom: 12px; }
.pp-head-grid {
 
 
  
}
.pp-head-avatar img {
  width: 90px; height: 90px; border-radius: 999px; object-fit: cover;
  border: 1px solid #868686; background: #fff;margin: auto;
}
.pp-name { margin: 0; font-weight: 700; color: #111827; font-size: 20px; }
.pp-subline { color: #6b7280; font-size: 14px; margin-top: 15px; }
/* meta row like the screenshot */
.pp-meta{
  /* display:flex; */
  align-items:center;
  gap:20px;           /* spacing between chips */
  flex-wrap:wrap;
}

/* chip = icon + text inline */
.pp-chip{
  display:flex;
  align-items:center;
  gap:8px;            /* icon/text spacing */
  margin: 15px 0;
  font-size:14px;     /* same compact size */
  line-height:1.2;
  color:#374151;      /* gray-700 for text */
  vertical-align:middle;
}

/* svg matches screenshot red; uses currentColor for strokes */
.pp-chip svg{
  width:18px;
  height:30px;
  color:#ef4444;      /* red icon */
  flex:0 0 18px;
}


.pp-head-side { display: grid; gap: 8px; justify-items: end; }
.pp-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #ef4444; background: #fff1f2; border: 1px solid #fecaca;
}

/* Tabs */
.pp-tabs { margin: 10px 0 0; }
.pp-tabbar { display: flex; gap: 10px;justify-content: space-between; }
.pp-tab {
  background: transparent; border: 0; border-radius: 10px; cursor: pointer;
  padding: 10px 14px; color: #6b7280; font-weight: 600 !important; font-size: 14px !important;
  
}
.pp-tab.is-active { color: #ef4444; background: #fff1f2; }
.pp-underline {
  border-bottom: 1px solid #111; margin: 20px 0;
}


/* Keep locked fields in view mode even when the card is editing */
.pp-card.editing .pp-item[data-lock] .pp-edit { display: none !important; }
.pp-card.editing .pp-item[data-lock] .pp-view { display: inline !important; }

/* Panels */
.pp-panel { display: none; margin-top: 12px; }
.pp-panel.is-active { display: block; }

/* Card head inside panels */
.pp-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px;
}
.pp-card-title { font-weight: 700; color: #111827; }
.pp-card-sub { color: #6b7280; font-size: 13px; margin-top: 2px; }

.pp-btn-edit {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  font-weight: 700; color: #111827; background: #f3f4f6; border: 1px solid #e5e7eb; padding: 8px 12px; border-radius: 10px;
}
.pp-btn-edit:hover { background: #e5e7eb; }
.pp-btn-edit svg { width: 18px; height: 18px; color: #6b7280; }

/* Two/three-column data grid */
.pp-grid {
  /* display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(220px, 1fr)); */
}
@media (min-width: 900px){
  /* .pp-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); } */
}
.pp-item span { display:block; color:#6b7280; font-size:12px; margin-bottom:12px;  font-weight: 600; }
.pp-item strong { color:#111827; font-weight:500; font-size: 1rem; }
.pp-item.wide { grid-column: 1 / -1; }

/* Privacy */
/* dot in title */
.privacy-dot{width:10px;height:10px;border:2px solid #ef4444;border-radius:3px;display:inline-block}

/* layout */
.pp-privacy{padding:8px 2px}
.privacy-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:4px 0}
.privacy-text{min-width:0}
.privacy-title{font-weight:600}
.privacy-sub{color:#64748b;font-size:12.5px}

/* view-only ghost switch text */
.switch-ghost{padding:.3rem .75rem;border-radius:999px;background:#f1f5f9;color:#475569;font-size:12.5px}
.switch-ghost.is-on{background:#fee2e2;color:#b91c1c}

/* toggle switch (edit) */
.pp-switch{position:relative;width:46px;height:26px;display:none}            /* hidden in view */
.pp-card.editing .pp-switch{display:inline-block}
.pp-switch input{display:none}
.pp-slider{position:absolute;inset:0;background:#e5e7eb;border-radius:999px;cursor:pointer;transition:.2s}
.pp-slider:before{content:"";position:absolute;height:20px;width:20px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s;box-shadow:0 1px 2px rgba(0,0,0,.1)}
.pp-switch input:checked + .pp-slider{background:#ef4444}
.pp-switch input:checked + .pp-slider:before{transform:translateX(20px)}

/* big select (view) */
.big-select{border:1px solid var(--border,#e5e7eb);border-radius:8px;padding:10px 12px}
.big-select .big-select-inner{display:flex;align-items:center;gap:10px}
.big-select .icon-eye{display:inline-flex}

/* big select (edit) */
.big-select-edit{display:none}
.pp-card.editing .pp-view[data-name="visibility"]{display:none}
.pp-card.editing .big-select-edit{display:block}
.big-select-native{width:100%;padding:.65rem .75rem;border:1px solid var(--border,#e5e7eb);border-radius:8px}


/* Responsive tweaks */
@media (max-width: 640px){
  .pp-head-grid{ grid-template-columns: 56px 1fr; }
  .pp-head-side{ justify-items: start; grid-column: 1 / -1; grid-row: 3; }
}





/* edit  */
/* Inline edit mode */
.pp-edit { display: none; width: 100%; padding: 10px 12px; border:1px solid #e5e7eb; border-radius:10px; background:#fff; }
.pp-card.editing .pp-view { display: none; }
.pp-card.editing .pp-edit { display: block; }

.pp-actions { display:flex; gap:8px; }
.pp-btn-cancel {
  background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:8px 12px; font-weight:700; color:#111827;
}
.pp-btn-edit {
  background:#ef4444; color:#fff; border:0; border-radius:10px; padding:8px 14px; font-weight:700;
}
.pp-btn-edit[disabled]{ opacity:.7; cursor:wait; }



.privacy-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
}
.privacy-title { font-weight:600 }
.privacy-sub { color:#64748b; font-size:13px }
.pp-switch {
  position:relative;
  width:46px;
  height:26px;
}
.pp-switch input { display:none }
.pp-slider {
  position:absolute;
  inset:0;
  background:#e5e7eb;
  border-radius:999px;
  cursor:pointer;
  transition:.2s;
}
.pp-slider:before {
  content:"";
  position:absolute;
  height:20px;
  width:20px;
  left:3px;
  top:3px;
  background:#fff;
  border-radius:50%;
  transition:.2s;
  box-shadow:0 1px 2px rgba(0,0,0,.1);
}
.pp-switch input:checked + .pp-slider {
  background:#ef4444;
}
.pp-switch input:checked + .pp-slider:before {
  transform:translateX(20px);
}
.big-select-native {
  width:100%;
  padding:.65rem .75rem;
  border:1px solid var(--border,#e5e7eb);
  border-radius:8px;
}


.pp-save {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 18px;
  border:none;
  border-radius:8px;

  background:#ef4444;        /* Tailwind’s red-500 */
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;

  transition:background .2s, transform .1s;
}

.pp-save:hover {
  background:#dc2626;        /* darker red */
}

.pp-save:active {
  transform:scale(0.97);
}

.pp-save:disabled {
  background:#f87171;        /* lighter red */
  cursor:not-allowed;
}


/* overlay  */
.verify-overlay{
  position:fixed; inset:0; background:rgba(15,23,42,.55);
  backdrop-filter: blur(2px);
  display:flex; align-items:center; justify-content:center;
  z-index: 9999;
}
.verify-modal{
  background:#fff; color:#0f172a; border-radius:12px; padding:24px;
  width:min(560px, 92vw); box-shadow:0 10px 30px rgba(0,0,0,.15);
  text-align:center;
}
.verify-modal h2{ margin:0 0 6px; font-size:22px; }
.verify-modal p{ color:#475569; margin:0 0 16px; }
.verify-actions{ display:flex; gap:12px; justify-content:center; margin-bottom:10px; }
.verify-msg{ font-size:14px; color:#334155; min-height:20px; }
.btn.btn-primary{ background:#ef4444; color:#fff; border:none; padding:10px 16px; border-radius:8px; font-weight:600; cursor:pointer; }
.btn.btn-primary:hover{ background:#dc2626; }
.btn.btn-ghost{ background:#f1f5f9; color:#0f172a; border:none; padding:10px 16px; border-radius:8px; font-weight:600; cursor:pointer; }
.btn.btn-ghost:hover{ background:#e2e8f0; }


@media (max-width: 480px) {
  .verify-modal {
    padding: 16px;
    border-radius: 8px;
    width: 94vw;   /* a little wider on tiny screens */
  }
  .verify-modal h2 {
    font-size: 18px;
  }
  .verify-modal p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .verify-actions {
    flex-direction: column;
    gap: 8px;
  }
  .btn.btn-primary,
  .btn.btn-ghost {
    width: 100%;      /* full width buttons on mobile */
    padding: 10px;
    font-size: 15px;
  }
}

/* Medium screens (tablets portrait ~768px) */
@media (max-width: 768px) {
  .verify-modal {
    padding: 20px;
  }
  .verify-modal h2 {
    font-size: 20px;
  }
}