﻿/* ===========================================================
   1. ROOT VARIABLES — BRAND SYSTEM
=========================================================== */
:root {
    --bg: #F7F7F9;
    --card-bg: #FFFFFF;
    --card-border: #E1E1E6;
    --nav-bg: #FFFFFF;
    --text: #1A1A1C;
    --text-muted: #5E5E63;
    --link: #1264A3;
    --link-hover: #0B4C7D;
    --shadow-soft: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-medium: 0 2px 6px rgba(0,0,0,0.12);
    --slack-purple: #611F69;
    --slack-blue: #1264A3;
    --slack-green: #2EB67D;
    --slack-yellow: #ECB22E;
    --success: #2EB67D;
    --warning: #F28C28;
    --danger: #E01E5A;
    --danger-hover: #B01747;
    --band: #1264A3;
    --band-hover: #0B4C7D;
    --musician: #2EB67D;
    --musician-hover: #23915F;
}

/* ===========================================================
   2. GLOBAL ELEMENTS (BODY, TEXT, LINKS)
=========================================================== */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    color: var(--text);
    font-weight: 600;
    margin-top: 0;
}

p, span, label {
    color: var(--text);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-danger {
    color: var(--danger) !important;
}

span.text-danger {
    color: var(--danger) !important;
}

a {
    color: var(--link);
    text-decoration: none;
}

    a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

/* =========================================
   02. GLOBAL UTILITY CLASSES
   ========================================= */

.match-notes-label {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.match-notes-box {
    width: 100%;
    min-height: 70px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    resize: vertical;
}

.match-notes-save {
    margin-top: 6px;
}

/* ===========================================================
   3. UTILITIES (SPACING, FLEX, VISIBILITY)
=========================================================== */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.gap-2 {
    gap: .5rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ===========================================================
   4. NAVIGATION (NAVBAR + BACK BUTTON)
=========================================================== */
.navbar {
    background-color: var(--nav-bg) !important;
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
}

.navbar-brand,
.nav-link {
    color: var(--text) !important;
    font-weight: 500;
}

    .nav-link:hover {
        color: var(--link-hover) !important;
        text-decoration: none;
    }

.btn-nav {
    display: inline-block;
    background-color: #1264A3;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

    .btn-nav:hover {
        background-color: #0f4f82;
        color: white;
    }

.btn-disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* ===========================================================
   5. CARDS (GENERIC + MATCH STATUS)
=========================================================== */

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.card-header {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
    font-weight: 600;
    color: var(--text);
    padding: .68rem 1rem;
} 

/* ===========================================================
   UNIVERSAL MATCH CARD HEADER
=========================================================== */

.match-card .card-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

    /* Title block — fixed space for 2 lines */
    .match-card .card-header .header-title {
        flex-shrink: 0;
        height: 40px;
        line-height: 1.2;
    }

    /* Clamp title text to 2 lines */
    .match-card .card-header strong {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* Status bar */
.sub-header {
    line-height: 1.2;
    padding: 2px 0;
}

/* ===========================================================
   MUSICIANS SEEING BAND MATCHES
   (these have a nudge row → need more breathing room)
=========================================================== */

.musician-match .card-header .d-flex.flex-wrap {
    padding-bottom: 4px;
}

.musician-match .card-header {
    height: 162px;
}

/* ===========================================================
   BANDS SEEING MUSICIAN MATCHES
   (no nudge row → tighten spacing)
=========================================================== */

.band-match .card-header .d-flex.flex-wrap {
    margin-top: 0.25rem;
    padding-bottom: 0;
}

.band-match .card-header {
    height: 148px; /* sweet spot */
}



/* ===========================================================
   CARD BODY
=========================================================== */

.card-body {
    color: var(--text);
    padding: 1rem;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}


/* Match Status Colors */
.PendingBand, .PendingMusician {
    background-color: #C9A86A;
}

.MutualInterest {
    background-color: #4CAF7A;
}

.Dismissed {
    background-color: #C85A63;
}

.Archived {
    background-color: #8E4C96;
}

.NoRequest {
    background-color: #003F9E;
}

.Reference {
    background-color: #1A1A1A;
}

.RequestContact {
    background-color: #003F9E;
}

.PendingBand,
.NoRequest,
.RequestContact,
.Reference,
.PendingMusician,
.MutualContact,
.Dismissed,
.Archived {
    color: white;
}


/* ===========================================================
   6. BUTTON SYSTEM (SLACK BUTTONS + ACTION BUTTONS)
=========================================================== */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: .9rem;
    line-height: 1.5;
    border-radius: 6px;
    cursor: pointer;
    background-color: transparent;
    color: var(--text);
}

    .btn:disabled {
        opacity: 0.65;
        cursor: default;
    }

/* Slack Buttons */
.btn-slack {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    border: none;
}

.btn-slack-blue {
    background: #1264A3;
    color: white;
}

.btn-slack-gold {
    background: #DFA22F;
    color: white;
}

.btn-slack-green {
    background: #2EB67D;
    color: white;
}

.btn-slack-red {
    background: #E01E5A;
    color: white;
}

.btn-slack-plum {
    background: #4A154B;
    color: white;
}

.btn-slack-grey {
    background-color: #d0d0d0;
    color: #333;
    border: 1px solid #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

    .btn-slack-grey:hover:not(:disabled) {
        background-color: #d5d5d5;
    }

/* Primary Actions */
.btn-primary-action {
    background-color: var(--slack-blue) !important;
    border-color: var(--slack-blue) !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 6px;
    padding: .375rem .75rem;
    font-size: .9rem;
}

    .btn-primary-action:hover {
        background-color: var(--link-hover) !important;
        border-color: var(--link-hover) !important;
    }

/* Outline Actions */
.btn-outline-action {
    background-color: transparent !important;
    border: 1px solid var(--slack-blue) !important;
    color: var(--slack-blue) !important;
    font-weight: 500;
    border-radius: 6px;
    padding: .375rem .75rem;
    font-size: .9rem;
}

    .btn-outline-action:hover {
        background-color: var(--slack-blue) !important;
        color: #fff !important;
    }

.btn-unlock {
    padding: .375rem .75rem;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-nudge {
    background-color: #7A5AF8; /* bold Unlock-style purple */
    border: 1px solid #000000; /* slightly darker border */
    color: white; /* high contrast, readable */
    padding: .375rem .75rem; /* matches .btn height */
    border-radius: 6px; /* consistent with your system */
    display: inline-block;
    font-weight: 500; /* gives it authority */
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    font-size: 1rem;
}

    .btn-nudge:hover {
        background-color: #6A4DE0; /* deeper hover */
        border-color: #000000;
        color: white;
    }


/* ===========================================================
   7. IDENTITY COLORS (BAND / MUSICIAN)
=========================================================== */
.bg-band {
    background-color: #DCEBFA !important;
    border-left: 4px solid #A9C8F0;
    color: #1F3F66 !important;
}

.bg-musician {
    background-color: #E8D9F1 !important;
    border-left: 4px solid #C7A8DD;
    color: #4A2E63 !important;
}

.btn-band-identity {
    background-color: #DCEBFA !important;
    border-color: #A9C8F0 !important;
    color: #1F3F66 !important;
}

    .btn-band-identity:hover {
        background-color: #C9DFF7 !important;
        border-color: #94B9E8 !important;
    }

.btn-musician-identity {
    background-color: #E8D9F1 !important;
    border-color: #C7A8DD !important;
    color: #4A2E63 !important;
}

    .btn-musician-identity:hover {
        background-color: #E0CBEA !important;
        border-color: #B896D3 !important;
    }

.btn-musician-identity,
.btn-band-identity {
    flex-shrink: 0;
}


.btn-enable {
    color: white;
    background-color: var(--slack-purple);
    border: 1px solid var(--slack-purple);
    font-weight: 600;
}

    .btn-enable:hover {
        background-color: #4A1650; /* darker purple */
        color: white;
        border-color: #4A1650;
    }

.btn-disable {
    color: var(--danger);
    border: 1px solid var(--danger);
    background-color: transparent;
    font-weight: 600;
}
    .btn-disable:hover {
        background-color: var(--warning); /* orange hover */
        border-color: var(--warning);
        color: white;
    }

.btn-delete {
    color: white;
    background-color: var(--danger);
    border: 1px solid var(--danger);
    font-weight: 600;
}

    .btn-delete:hover {
        background-color: var(--danger-hover);
        border-color: var(--danger-hover);
        color: white;
    }


/* ===========================================================
   8. FORMS (INPUTS, LABELS, VALIDATION)
=========================================================== */
.form-control {
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: .55rem .75rem;
    font-size: .95rem;
    background-color: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .form-control:focus {
        border-color: var(--slack-blue);
        box-shadow: 0 0 0 3px rgba(18, 100, 163, 0.15);
        outline: none;
    }

.form-label {
    font-weight: 600;
    margin-bottom: .35rem;
    color: #1F2937;
}

.text-validation-error {
    color: var(--danger);
}


/* ===========================================================
   9. TABLES
=========================================================== */
table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
    font-size: .9rem;
}

    table thead {
        background-color: #F0F0F3;
        border-bottom: 2px solid var(--card-border);
    }

    table th, table td {
        padding: .5rem .75rem;
        border-bottom: 1px solid var(--card-border);
    }

    table tbody tr:hover {
        background-color: #F3F3F6;
    }


/* ===========================================================
   10. ALERTS
=========================================================== */
.alert {
    border-radius: 6px;
    padding: .5rem .75rem;
    margin-bottom: 1rem;
    font-size: .9rem;
}

.alert-success {
    background-color: #E3F9E5;
    border: 1px solid #B7E4C7;
    color: #1B4332;
}

.alert-soft-warning {
    background-color: #fff8e1;
    border-left: 4px solid #f0ad4e;
    padding: 12px 16px;
    border-radius: 6px;
    color: #8a6d3b;
}

.alert-soft-success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 12px 16px;
    border-radius: 6px;
    color: #2e7d32;
}


/* ===========================================================
   11. LAYOUT HELPERS (GRID, CONTAINERS)
=========================================================== */
.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.col-md-4, .col-md-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.3333%;
    }

    .col-md-6 {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .col-md-4, .col-md-6 {
        width: 100%;
    }
}


/* ===========================================================
   12. LOGO SYSTEM — UNIFIED, NO DUPLICATES
   Order matters: Identity → Split Login → Homepage
=========================================================== */

/* Identity Pages (Centered Card Layout) */
.identity-logo-container {
    background-color: transparent !important;
}

    .identity-logo-container img {
        max-width: 220px;
        height: auto;
        opacity: 0.95;
    }

@media (max-width: 480px) {
    .identity-logo-container img {
        max-width: 180px;
        margin-top: -10px;
    }
}

/* Split-Panel Login Page */
.login-card-container {
    background: transparent !important;
}

.login-left-panel {
    background: var(--musician-purple, #DDEBFF);
}

.login-right-panel {
    background: #ffffff;
}

.login-left-logo {
    background-color: transparent !important;
}

    .login-left-logo img {
        max-width: 260px;
        height: auto;
        opacity: 0.95;
    }

@media (max-width: 480px) {
    .login-left-logo img {
        max-width: 185px;
        margin-top: -20px;
    }
}

.login-left-panel {
    padding: 0;
}

/* Static Pages (Pricing, About, Terms, Privacy) */
.static-page-logo img {
    max-width: 200px;
    height: auto;
    opacity: 0.95;
    padding-bottom: 16px; /* or 20px if you want more breathing room */
}

/* Homepage (Splash Logo) — MUST COME LAST */
.splash-logo img {
    max-width: 250px;
    height: auto;
    opacity: 0.95;
    padding-bottom: 0px; /* or 20px if you want more breathing room */
}

@media (max-width: 480px) {
    .splash-logo img {
        max-width: 200px;
        margin-top: -20px;
    }
}



/* ===========================================================
   13. AUTHENTICATION LAYOUTS (LOGIN, REGISTER, SPLIT PANEL)
=========================================================== */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.login-card-container {
    display: flex;
    width: 900px;
    max-width: 95%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Left Panel */
.login-left-panel {
    width: 40%;
    background: var(--musician-purple, #DDEBFF);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Right Panel */
.login-right-panel {
    width: 60%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card {
    width: 100%;
}

.login-footer {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.85;
    padding: 20px 0;
}

    .login-footer a:hover {
        text-decoration: underline;
    }

@media (max-width: 900px) {
    .login-card-container {
        flex-direction: column;
        width: 100%;
    }

    .login-left-panel {
        width: 100%;
        padding: 40px 20px;
    }

    .login-right-panel {
        width: 100%;
        padding: 30px 20px;
    }
}


/* ===========================================================
   14. PAGE-SPECIFIC LAYOUTS (SUCCESS, PAYWALL, REVEAL, STATIC)
=========================================================== */

/* Success Page */
.success-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.success-card {
    max-width: 640px;
    width: 100%;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.success-title {
    text-align: center;
    font-weight: 700;
    color: #7621FF;
    margin-bottom: 0.75rem;
}

.success-label {
    text-align: center;
    margin-bottom: 0.25rem;
}

.success-code {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0000FF;
}

.success-divider {
    border-top: 2px solid #000000;
    opacity: 0.15;
    margin: 1.25rem 0;
}

.success-redirect {
    text-align: center;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.success-button-wrapper {
    text-align: center;
}

/* Paywall */
.unlock-paywall-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: 0.75rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    text-align: center;
}

.unlock-paywall-text {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #333333;
}

.btn-unlock {
    display: inline-block;
    background-color: #7621FF;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
}

    .btn-unlock:hover {
        background-color: #8A3BFF;
        color: #ffffff;
    }

.unlock-paywall-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
}


/* Reveal Contact Page */
.reveal-page .reveal-title {
    font-weight: 700;
    color: #4b3f72;
    margin-bottom: 1rem;
}

.reveal-page .reveal-card {
    border-radius: 8px;
    background: #ffffff;
}

.reveal-page .reveal-card-header {
    padding: 8px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Renamed to avoid conflict with global .bg-band/.bg-musician */
.reveal-bg-band {
    background-color: #0000FF;
    color: white;
}

.reveal-bg-musician {
    background-color: #7621FF;
    color: white;
}

.reveal-page .reveal-card-body {
    padding: 12px 16px;
}

.reveal-page .reveal-field {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 6px;
    margin-bottom: 2px;
    font-size: 1rem;
    line-height: 1.0;
}

    .reveal-page .reveal-field span {
        font-weight: 600;
        color: #333;
        text-align: right;
    }

.btn-return {
    background-color: #7621FF;
    color: #ffffff !important;
    border: 2px solid #000000;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

    .btn-return:hover {
        background-color: #5d1acc;
    }


/* Static Page Layout */
.static-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.static-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slack-blue);
    margin-bottom: 1rem;
}

.static-page-card {
    max-width: 760px;
    background: #ffffff;
    padding: 1.75rem 2rem;
    border-radius: 12px;
}

    .static-page-card p {
        font-size: 1.05rem;
        line-height: 1.55;
    }

/* Screenshot Container */
.screenshot-container {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

    .screenshot-container img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

.screenshot-placeholder {
    width: 100%;
    max-width: 360px;
    height: 480px;
    background: #f5f5f5;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 0.95rem;
}


/* ===========================================================
   15. LOADING OVERLAY
=========================================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms cubic-bezier(0.22, 0.11, 0.36, 1);
}

body.loading .loading-overlay {
    opacity: 1;
    pointer-events: all;
}

.loading-overlay .loading-text {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
}


/* ===========================================================
   16. MODALS (IMAGE ZOOM)
=========================================================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.75);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.zoomable {
    cursor: zoom-in;
}


/* ===========================================================
   17. MATCHING UI (MATCH CARDS, TAGS, EMPTY STATES)
=========================================================== */
.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.match-card {
    flex: 1 1 calc(33.333% - 2.5rem);
    max-width: 300px;
    min-width: 220px;
}

.empty-state {
    padding: 2rem;
    text-align: center;
    color: #666;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 1rem;
}

    .empty-state h3 {
        margin-bottom: 0.5rem;
        color: #333;
    }

.badge.credit-badge {
    background-color: #4b89ff;
    color: #fff;
}

.tag {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    height: 24px;
    line-height: 1;
}

.tag-green {
    background-color: #4CAF7A;
    color: white;
}

.tag-yellow {
    background-color: #ecb22e;
    color: white;
}

.tag-red {
    background-color: #e01e5a;
    color: white;
}

/* Match Coloring */
.text-match {
    color: var(--success) !important;
}

.text-partial {
    color: var(--warning) !important;
}

.text-mismatch {
    color: var(--danger) !important;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}


/* ===========================================================
   18. INTAKE FORM FOOTER (Sticky Button Bar)
=========================================================== */

.intake-footer {
    position: sticky;
    bottom: 0;
    background: #fafafa; /* subtle grey tint */
    padding: 0.75rem 0;
    border-top: 2px solid #e0e0e0; /* stronger separator */
    z-index: 10;
}

/* Mobile optimization for sticky intake footer */
@media (max-width: 490px) {
    .intake-footer .btn {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        font-size: 0.80rem;
    }
}

a.btn {
    text-decoration: none !important;
    padding: .375rem .75rem !important;
    border-radius: 6px !important;
}

.btn-slack-blue,
.btn-slack-green,
.btn-slack-red,
.btn-slack-gold,
.btn-slack-plum,
.btn-slack-grey,
.btn-enable,
.btn-disable,
.btn-delete {
    display: inline-block;
    line-height: 1;
    font-size: 1rem;
    padding: .375rem .75rem;
    border-radius: 6px;
}

/* ===========================================================
   19. MATCH (pills)
=========================================================== */

.match-pill {
    display: inline-block;
    padding: 0px 6px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 4px;
    margin-bottom: 4px;
}

/* Full Match */
.match-pill-full {
    background-color: #DFF3E4; /* subtle but visible green */
    color: #1B6E36;
}
    /* Partial Match */
    .match-pill-partial {
        background-color: #FFE0B8; /* visible orange */
        color: #8A4B00;
    }
    /* Mismatch */
    .match-pill-mismatch {
        background-color: #F6CFCB; /* visible red */
        color: #8A1C1C;
    }

/* ===========================================================
   20. SCREENSHOT section
=========================================================== */
/* Remove spacing between stacked images */
.musician-intake-stack img,
.band-intake-stack img,
.musicianmatches-stack img,
.bandmatches-stack img {
    display: block;
    margin: 0;
    padding: 0;
}

/* Modal arrows */
.image-modal-prev,
.image-modal-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    z-index: 9999;
}

.image-modal-prev {
    left: 20px;
}

.image-modal-next {
    right: 20px;
}
