.container {
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding:0 var(--s-6);
    
    
}

.container-narrow{max-width:760px;margin:0 auto;padding:0 var(--s-6)}
section{padding:var(--s-12) 0}
section.tight{padding:var(--s-9) 0}

.row {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Ensures all children take the height of the tallest card */
  max-width: 100%;
  flex-wrap: wrap;
  padding: 2em;
  border: 1px solid black;
  gap: 1.5em; /* Adds consistent spacing between cards */
}

.cards1 {
  padding: 2em;
  border: 1px solid black;
  
  /* Flex shorthand: grow to fill space, shrink if needed, start at 200px */
  flex: 1 1 200px; 
  max-width: 400px; /* Optional: prevents cards from getting too wide on desktop */

  /* Make the card a flexbox to align internal content */
  display: flex;
  flex-direction: column;
}

/* Ensure the last element (like your button div) stays at the bottom */
.cards1 > div:last-child {
  margin-top: auto; 
}

.field-row {
    display: flex; 
    gap: 1rem;  
    flex-wrap: wrap;
}

.field {
    flex: 1;
    /* Ensures fields stack on mobile when they hit 200px width */
    min-width: 200px; 
     margin-bottom: 1rem;
}

/* Optional: Ensure labels and inputs inside .field are block-level */
.field label {
    display: block;
    margin-bottom: 0.5rem;
}

.field input, 
.field select {
    width: 100%;
}


/* 
.grid-2{display:grid;gap:var(--s-6);grid-template-columns:1fr}


.grid-3{display:grid;gap:var(--s-6);grid-template-columns:1fr}
.grid-4{display:grid;gap:var(--s-6);grid-template-columns:1fr;}
@media (min-width:640px){
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:960px){
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
} */

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background: var(--ink-2);backdrop-filter:saturate(140%) blur(10px);
  box-shadow:var(--shadow-2) ;
}
/* Existing Base Styles */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-5);
    height: 76px;
  
    position: relative; /* Essential for mobile menu positioning */
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    color: var(--indigo-900);
    text-decoration: none;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

footer h4, .brand-word {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -.02em;
    color: var(--ink-2);
}

 h4 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -.02em;
    color: var(--indigo-900);
}

.topmargin1 {
    margin-top: 2rem !important;
}


.brand-subtext {
    color: var(--indigo-900);
}

/* Responsive Implementation */

/* 1. Hide the long conference subtext on mobile */

/* 2. Mobile Menu Styling (Default) */
.nav-list {
    display: none; /* Hide by default on mobile */
    position: absolute;
    top: 76px; /* Matches your header height */
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: var(--s-5);
    border-bottom: 1px solid var(--indigo-100);
    z-index: 100;
    
}

/* Class to be toggled via JS */
.nav-list.is-active {
    display: flex;
}

@media (max-width: 1024px) {
    .brand-subtext{
    display: none;
}

}

/* 3. Desktop View (Breakpoint) */
@media (min-width: 768px) {
   
    /* Show the long subtext again */
   
    /* Reset Nav List to horizontal row */
    .nav-list {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        border: none;
        gap: var(--s-4);
     
    }

    /* Show CTA buttons */
    .nav-cta {
        display: flex;
        gap: var(--s-3);
    }

    /* Hide the hamburger button on desktop */
    .nav-toggle {
        display: none;
    }
}



/* Large Screens (1024px and up) */
@media (min-width: 1024px) {
    .beams-table td:last-child {
        /* Your original target size or slightly bigger */
        font-size: 25px; 
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    .beams-table td.display {
        /* Scale the acronym letters (B, E, A, M, S) to match */
        font-size: 4rem; 
    }

}



@media (max-width: 640px) {

    span .micro {
        font-size: 2rem !important;
    }
    .hero-actions {
         margin-top: 1rem;
    }
  .hero-actions a{
   
    display: block;
    width: 100%;
    text-align: center;
  }

  .submit-head {
    margin-top: 2.5rem !important;
  }

  .stepper .num {
    width: 13px !important;
    height: 13px !important;
    font-size: 0.75rem !important;

  }
 
 .submit-form {
    padding: 20px !important;   
}
 

    .all-center1 {
        display:none;
    }

.to-span button{
    display: block;
    width: 100%;
    text-align: center;
}

 .sdg-logo {
    width: 100% !important;

 }

     .uv-spin, img {
        display: flex !important;
        justify-content: center !important;
    }

    .btn-primary1,
    .btn-ghost1 {
        display: none; /* Hide 'Submit' on tiny phones to prevent overlap */
    }

    .topmargin {
        margin-top: 3rem !important; /* Add spacing above the back link */
    }


    .hero {
    padding: 50px 0 !important;
    }
    .display {
        font-size: 40px !important;
    }

    .container {
        max-width: 100% !important;
        padding: 15px !important;
    }
    .dash-side {
          padding: 5px !important;
            z-index: 12 !important;
    }

    .dash-nav {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        justify-content: space-evenly !important;
        flex: 1 !important;
      
    }
    a .muted {
        margin-top: 2rem !important;
    }



    .auth-logo-container img {
        width: 90px !important;
        height: auto !important;
    }

    .hide-text {
    display: none;
}

.hide-on-mobile {
    display: none; 
}

.vertical-line {
    display: none !important; /* Hide the vertical line on mobile */
}

    .dash-section{
       margin-top: 0 !important;
       padding: 0 0 !important;
       
    } 

   

     .kpi-container {
        width: 100%;
        display: none;
    }

    .kpi-grid {
    display: grid !important;
    /* This creates 4 equal columns */
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.kpi-grid > div {
    /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
    flex: 1 !important; 
    text-align: center !important;
    padding: 8px 0 !important;
    /* Ensure they stay consistent even if text wraps */
    min-width: 0; 
}



    /* input[type=text],
    input[type=email],
    input[type=search],
    input[type=password],
    input[type=time],
    input[type=url],

    textarea, 
    select {
        font-size: 0.9rem !important;
    } */

    .auth-aside{
        display: none !important;
    }

    .auth-card{
        padding: 5px !important;
    }

    .auth-card label {
        font-size: 15px !important;
    }

    * {
        font-size: 0.8rem;
        box-sizing: border-box;
    }
  

    
  
    /* Table into cards */

    /* 1. Remove the table structure */
    .modern-table, 
    .modern-table thead, 
    .modern-table tbody, 
    .modern-table th, 
    .modern-table td, 
    .modern-table tr {
        display: block;
        
    }

    /* 2. Hide the header row completely */
    .modern-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    /* 3. Style each row as a Card */
    .modern-table tr {
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        
    }

    /* 4. Style each cell as a horizontal row inside the card */
    .modern-table td{
        border: none;
        position: relative;
      
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #f9f9f9;
        min-height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }

    /* 5. Insert the Labels from the data-label attribute */
    .modern-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 5px;
        font-weight: 700;
        text-align: left;
        color: #666;
        font-size: 0.85rem;
        text-transform: uppercase;
    }

    /* 6. Specific styling for the Action button on mobile */
    .modern-table td[data-label="Action"] {
        border-bottom: none;
        margin-top: 10px;
        justify-content: center;
        padding-left: 0 !important;
    }
    
    .modern-table td[data-label="Action"]::before {
        display: none; /* Hide the word "Action" so the button is centered */
    }

    .modern-table td[data-label="Action"] a {
        width: 100%;
        text-align: center;
    }

    .modern-table td.title-cell {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

form .field1 {
    display: none;
}


}


.nav-primary{flex:1;display:flex;justify-content:center}
.nav-list{display:none;gap:var(--s-6);align-items:center}
.nav-list a{color:var(--indigo-900);font-weight:500;font-size:var(--text-sm);position:relative;padding:6px 2px}
.nav-list a:hover,.nav-list a.active{color:var(--uv-green)}
.nav-list a.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;background:var(--amber-500);border-radius:2px}
@media (min-width:880px){.nav-list{display:flex}}

.nav-cta{display:flex; margin-bottom: 1em; gap:var(--s-2);align-items:center}
.nav-toggle{display:inline-flex;flex-direction:column;justify-content:center;gap:4px;border:1px solid var(--line);padding:9px 11px;border-radius:var(--radius);background:#fff}
.nav-toggle span{display:block;width:18px;height:2px;background:var(--indigo-900);border-radius:2px}
@media (min-width:880px){.nav-toggle{display:none}}
.nav-list.open{display:flex;position:absolute;top:72px;left:0;right:0;flex-direction:column;background:#fff;border-bottom:1px solid var(--line);padding:var(--s-4) var(--s-6);}

/* Footer */
.site-footer{background:var(--uv-green);color:#D7DDEA;margin-top:var(--s-12); padding: 0 2%;}
.site-footer a{color:#D7DDEA}
.site-footer a:hover{color:#fff}
.footer-grid{display:grid;gap:var(--s-7);padding:var(--s-10) 0;grid-template-columns:1fr}
@media (min-width:760px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-brand .brand-name{color:#fff}
.footer-brand p{max-width:38ch;color:#A9B2C8;margin-top:var(--s-3)}
.footer-col h4{color:#fff;font-family:var(--sans);font-size:var(--text-sm);text-transform:uppercase;letter-spacing:.16em;margin-bottom:var(--s-4)}
.footer-col li{margin-bottom:var(--s-2);font-size:var(--text-sm)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:var(--s-5) 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:var(--s-4);font-size:var(--text-xs);color:#8A93A6}

.auth-logo-container {
    text-align: center;
    margin-bottom: 0.3rem;
}

.uv-logo {
    width: 110px; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    margin-top: 12px;
}

.logo {
    width: 10rem; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.uv-logo:hover {
    transform: scale(1.05);
}

/* For the BEAMS branding next to the seal */
.auth-aside .eyebrow {

    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif; /* Or your site's serif font */
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #38bdf8; /* Accent light blue */
}

.stat-suffix {
    margin-left: -5px;
    color: #94a3b8;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Make the card a flex column */

/* Limit the abstract text length */

/* Optional: Style the badge to uppercase for a cleaner look */








.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f5f7fb;
    min-height: 80vh;
}

.payment-card {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.payment-card h2 {
    margin-bottom: 5px;
}

.subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin: 6px;
    font-weight: 600;
}



.upload-box {
    border: 2px dashed #d0d7e2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    background: #fafbff;
}

.upload-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

/* .uv-spin {
    display: flex;
    justify-content: center;
} */


.vertical-line {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    color: gray;
    unicode-bidi: isolate;
    overflow: hidden;
    border-style: inset;
    border-width: 1px;
  }
  

  .sdg-container {
    display: flex;
    justify-content: center;
    align-items: center;
 
  }