/* ===========================
   Mom List - Public Pages
   =========================== */

/* --- CSS Variables --- */
:root {
    --pub-primary: #6366f1;
    --pub-primary-dark: #4f46e5;
    --pub-accent: #f97066;
    --pub-accent-dark: #ef4444;
    --pub-secondary: #f59e0b;
    --pub-bg: #faf8f5;
    --pub-bg-alt: #f5f0eb;
    --pub-surface: #ffffff;
    --pub-text: #2d2a26;
    --pub-text-light: #6b6560;
    --pub-border: #e8e2dc;
    --pub-hero-start: #6366f1;
    --pub-hero-mid: #7c3aed;
    --pub-hero-end: #8b5cf6;
    --pub-radius: 0.75rem;
    --pub-radius-lg: 1rem;
    --pub-shadow: 0 2px 8px rgba(45, 42, 38, 0.06);
    --pub-shadow-lg: 0 8px 24px rgba(45, 42, 38, 0.1);
    --pub-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--pub-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pub-text);
    background: var(--pub-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.2;
}

p {
    margin: 0;
}

a {
    color: var(--pub-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

/* --- Header --- */
.pub-header {
    background: var(--pub-surface);
    box-shadow: 0 1px 3px rgba(45, 42, 38, 0.06);
    padding: 0 1.5rem;
}

.pub-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.pub-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pub-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pub-logo:hover {
    text-decoration: none;
}

.pub-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pub-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pub-text-light);
    text-decoration: none;
    transition: color 0.15s;
}

.pub-nav-link:hover {
    color: var(--pub-primary);
    text-decoration: none;
}

/* --- Footer --- */
.pub-footer {
    background: var(--pub-bg-alt);
    border-top: 1px solid var(--pub-border);
    padding: 2.5rem 1.5rem;
    margin-top: auto;
}

.pub-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.pub-footer-brand {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--pub-text);
    margin-bottom: 0.25rem;
}

.pub-footer-tagline {
    font-size: 0.875rem;
    color: var(--pub-text-light);
}

.pub-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.pub-footer-links a {
    font-size: 0.875rem;
    color: var(--pub-text-light);
    text-decoration: none;
}

.pub-footer-links a:hover {
    color: var(--pub-primary);
}

.pub-footer-copy {
    font-size: 0.8125rem;
    color: var(--pub-text-light);
    opacity: 0.7;
}

@media (max-width: 600px) {
    .pub-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .pub-footer-links {
        align-items: center;
    }
}

/* --- Buttons --- */
.pub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pub-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    line-height: 1.4;
}

.pub-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.pub-btn:active {
    transform: translateY(0);
}

.pub-btn-accent {
    background: var(--pub-accent);
    color: #fff;
}

.pub-btn-accent:hover {
    background: var(--pub-accent-dark);
    color: #fff;
}

.pub-btn-primary {
    background: var(--pub-primary);
    color: #fff;
}

.pub-btn-primary:hover {
    background: var(--pub-primary-dark);
    color: #fff;
}

.pub-btn-outline {
    background: transparent;
    color: var(--pub-primary);
    border: 2px solid var(--pub-primary);
}

.pub-btn-outline:hover {
    background: var(--pub-primary);
    color: #fff;
}

.pub-btn-white {
    background: #fff;
    color: var(--pub-primary);
}

.pub-btn-white:hover {
    background: #f0f0ff;
    color: var(--pub-primary-dark);
}

.pub-btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pub-btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pub-btn-pill {
    border-radius: 50px;
    padding: 0.625rem 1.75rem;
}

.pub-btn-lg {
    min-height: 50px;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.pub-btn-full {
    width: 100%;
}

/* --- Cards --- */
.pub-card {
    background: var(--pub-surface);
    border-radius: var(--pub-radius-lg);
    box-shadow: var(--pub-shadow-lg);
    padding: 2rem;
}

.pub-card-centered {
    background: var(--pub-surface);
    border-radius: var(--pub-radius-lg);
    box-shadow: var(--pub-shadow-lg);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* --- Forms --- */
.pub-form-group {
    margin-bottom: 1.25rem;
}

.pub-form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--pub-text);
}

.pub-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--pub-font);
    border: 1.5px solid var(--pub-border);
    border-radius: var(--pub-radius);
    background: var(--pub-surface);
    color: var(--pub-text);
    min-height: 44px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pub-input:focus {
    outline: none;
    border-color: var(--pub-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.pub-input::placeholder {
    color: var(--pub-text-light);
    opacity: 0.6;
}

.pub-form-hint {
    font-size: 0.8125rem;
    color: var(--pub-text-light);
    margin-top: 0.25rem;
}

/* --- Hero --- */
.pub-hero {
    background: linear-gradient(135deg, var(--pub-hero-start) 0%, var(--pub-hero-mid) 50%, var(--pub-hero-end) 100%);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.pub-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pub-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .pub-hero {
        padding: 3.5rem 1.25rem;
    }
    .pub-hero h1 {
        font-size: 2rem;
    }
    .pub-hero p {
        font-size: 1.0625rem;
    }
}

/* --- Sections --- */
.pub-section {
    padding: 4rem 1.5rem;
}

.pub-section-alt {
    padding: 4rem 1.5rem;
    background: var(--pub-bg-alt);
}

.pub-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Feature Grid --- */
.pub-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pub-feature-card {
    background: var(--pub-surface);
    border-radius: var(--pub-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--pub-shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.pub-feature-card:hover {
    box-shadow: var(--pub-shadow-lg);
    transform: translateY(-2px);
}

.pub-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.pub-feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 0.5rem;
}

.pub-feature-card p {
    font-size: 0.9375rem;
    color: var(--pub-text-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .pub-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pub-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Pricing Card --- */
.pub-pricing-card {
    background: var(--pub-surface);
    border: 2px solid var(--pub-primary);
    border-radius: var(--pub-radius-lg);
    padding: 2.5rem;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: var(--pub-shadow-lg);
    text-align: center;
}

.pub-pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pub-text);
}

.pub-pricing-amount span {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--pub-text-light);
}

.pub-pricing-tagline {
    font-size: 1.0625rem;
    color: var(--pub-text-light);
    margin: 0.25rem 0 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--pub-border);
}

.pub-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pub-pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.pub-pricing-features li::before {
    content: "\2713";
    color: var(--pub-primary);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pub-pricing-note {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--pub-text-light);
}

/* --- FAQ --- */
.pub-faq {
    max-width: 640px;
    margin: 3rem auto 0;
}

.pub-faq h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pub-faq-item {
    background: var(--pub-surface);
    border-radius: var(--pub-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--pub-shadow);
}

.pub-faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--pub-text);
}

.pub-faq-item p {
    font-size: 0.9375rem;
    color: var(--pub-text-light);
    line-height: 1.5;
}

/* --- Error/Alert --- */
.pub-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.875rem 1rem;
    border-radius: var(--pub-radius);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

/* --- Info Box --- */
.pub-info-box {
    background: var(--pub-bg);
    border-radius: var(--pub-radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.pub-info-box-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pub-text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pub-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.pub-info-row:not(:last-child) {
    border-bottom: 1px solid var(--pub-border);
}

.pub-info-row-label {
    font-size: 0.875rem;
    color: var(--pub-text-light);
}

.pub-info-row-value {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* --- Steps --- */
.pub-steps {
    margin-bottom: 2rem;
}

.pub-steps-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pub-text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pub-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pub-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pub-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pub-step-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    padding-top: 0.2rem;
}

/* --- Page Wrappers --- */
.pub-page-centered {
    min-height: calc(100vh - 64px - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

/* --- Login Section (landing page) --- */
.pub-login-section {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
}

.pub-login-card {
    background: var(--pub-surface);
    border-radius: var(--pub-radius-lg);
    padding: 2rem;
    box-shadow: var(--pub-shadow);
}

.pub-login-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--pub-text);
}

.pub-login-row {
    display: flex;
    gap: 0.5rem;
}

.pub-login-row .pub-input {
    flex: 1;
}

.pub-login-message {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--pub-primary);
    min-height: 1.4em;
}

/* --- Pricing Preview Band --- */
.pub-pricing-band {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.pub-pricing-band p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 0.75rem;
}

/* --- 404 Page --- */
.pub-error-page {
    text-align: center;
}

.pub-error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--pub-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pub-error-msg {
    font-size: 1.5rem;
    color: var(--pub-text-light);
    margin: 0.75rem 0 0.5rem;
}

.pub-error-desc {
    color: var(--pub-text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* --- Invitation Details --- */
.pub-invitation-details {
    background: var(--pub-bg);
    padding: 1rem 1.25rem;
    border-radius: var(--pub-radius);
    margin-bottom: 1.5rem;
    text-align: left;
}

.pub-invitation-details p {
    margin: 0.25rem 0;
    font-size: 0.9375rem;
}

/* --- Welcome/Celebration --- */
.pub-celebration-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.pub-pin-display {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: var(--pub-primary);
}

/* --- Utility --- */
.pub-text-center {
    text-align: center;
}

.pub-mt-1 {
    margin-top: 1rem;
}

.pub-mt-2 {
    margin-top: 1.5rem;
}

.pub-mb-1 {
    margin-bottom: 1rem;
}

.pub-mb-2 {
    margin-bottom: 1.5rem;
}

.pub-section-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pub-text);
}

.pub-section-subheading {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--pub-text-light);
    margin-bottom: 2.5rem;
}

/* --- Prose (legal pages) --- */
.pub-prose {
    max-width: 720px;
    margin: 0 auto;
}

.pub-prose h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pub-prose-updated {
    font-size: 0.875rem;
    color: var(--pub-text-light);
    margin-bottom: 2rem;
}

.pub-prose h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--pub-text);
}

.pub-prose p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pub-text);
    margin-bottom: 0.75rem;
}

.pub-prose ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.pub-prose li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pub-text);
    margin-bottom: 0.35rem;
}

.pub-prose a {
    color: var(--pub-primary);
}

/* --- Landing Page: Hero --- */
.pub-hero-landing {
    padding: 5rem 1.5rem 4rem;
}

.pub-hero-landing h1 {
    font-size: 3rem;
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

.pub-hero-sub {
    font-size: 1.375rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.pub-hero-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.pub-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pub-hero-note {
    font-size: 0.9375rem;
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 600px) {
    .pub-hero-landing h1 {
        font-size: 2.25rem;
    }
    .pub-hero-sub {
        font-size: 1.125rem;
    }
    .pub-hero-desc {
        font-size: 1rem;
    }
}

/* --- Landing Page: Problem Section --- */
.pub-problem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pub-text-left {
    text-align: left;
}

.pub-problem-intro {
    font-size: 1.0625rem;
    color: var(--pub-text-light);
    margin: 1rem 0;
}

.pub-problem-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.pub-problem-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
    color: var(--pub-text);
}

.pub-problem-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--pub-accent);
    font-size: 1.25rem;
    font-weight: 700;
}

.pub-problem-close {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pub-text);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.pub-problem-image img {
    width: 100%;
    border-radius: var(--pub-radius-lg);
    object-fit: cover;
    max-height: 360px;
}

@media (max-width: 768px) {
    .pub-problem {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pub-problem-image {
        order: -1;
    }
}

/* --- Landing Page: Differentiator Section --- */
.pub-differ-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.pub-differ-point {
    background: var(--pub-surface);
    border-radius: var(--pub-radius);
    padding: 1.5rem;
    box-shadow: var(--pub-shadow);
    text-align: center;
}

.pub-differ-point p {
    font-size: 1rem;
    color: var(--pub-text);
    line-height: 1.5;
}

.pub-differ-bottom {
    text-align: center;
    margin-top: 1.5rem;
}

.pub-differ-bottom p {
    font-size: 1.0625rem;
    color: var(--pub-text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .pub-differ-points {
        grid-template-columns: 1fr;
    }
}

/* --- Landing Page: How It Works --- */
.pub-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pub-how-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.pub-how-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pub-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.pub-how-step h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 0.5rem;
}

.pub-how-step p {
    font-size: 0.9375rem;
    color: var(--pub-text-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .pub-how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pub-how-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* --- Landing Page: Feature Grid Compact --- */
.pub-feature-grid-compact {
    grid-template-columns: repeat(3, 1fr);
}

.pub-feature-grid-compact .pub-feature-card {
    text-align: center;
}

@media (max-width: 900px) {
    .pub-feature-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pub-feature-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* --- Landing Page: Emotional Payoff --- */
.pub-payoff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pub-payoff-col {
    background: var(--pub-bg-alt);
    border-radius: var(--pub-radius-lg);
    padding: 2rem;
}

.pub-payoff-col h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pub-primary);
    margin-bottom: 1rem;
}

.pub-payoff-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pub-payoff-col li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--pub-text);
    line-height: 1.5;
}

.pub-payoff-col li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--pub-primary);
    font-weight: 700;
}

@media (max-width: 600px) {
    .pub-payoff-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Landing Page: Pricing Band (enhanced) --- */
.pub-pricing-band h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pub-text);
    margin-bottom: 0.5rem;
}

.pub-pricing-tagline-landing {
    font-size: 1.0625rem;
    color: var(--pub-text-light);
    margin: 0.25rem 0 0.5rem;
}

.pub-pricing-aside {
    font-size: 0.9375rem;
    color: var(--pub-text-light);
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* --- Landing Page: Closing CTA --- */
.pub-closing-cta {
    text-align: center;
    padding: 5rem 1.5rem;
}

.pub-closing-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pub-text);
    margin-bottom: 0.75rem;
}

.pub-closing-cta p {
    font-size: 1.0625rem;
    color: var(--pub-text-light);
    max-width: 520px;
    margin: 0 auto 0.75rem;
    line-height: 1.6;
}

.pub-closing-emotional {
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 1.75rem;
}

.pub-closing-cta .pub-btn {
    margin-top: 0.5rem;
}
