/* Universal Cross-Browser Global Layout Baseline Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 15px;
    position: relative;
    background-image: url('Background-Image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* Main Display Framework Layout Definition Card */
.tracker-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 680px; 
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Presentation Typography Typography Blocks */
.logo-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px auto;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.color-red { color: #dc2626; }
.color-green { color: #16a34a; }
.color-blue { color: #2563eb; }

.brand-motto {
    font-size: 11px;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
}

.campaign-badge {
    display: inline-block;
    background: #3498db;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 5px;
    margin-bottom: 25px;
}

/* Progress Layout Mechanics Track Line Geometry */
.status { 
    font-size: 14px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.progress-container {
    background: #e0e0e0;
    border-radius: 10px;
    height: 12px;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-bar {
    background: #3498db;
    height: 100%;
    width: 0%;
    transition: width 0.5s linear;
}

.milestones {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    font-weight: bold;
    margin-bottom: 30px;
    gap: 4px;
}

.milestones span {
    transition: color 0.3s ease;
    white-space: nowrap;
}

.milestones .active-town { color: #3498db; }
.milestones .reached-town { color: #27ae60; }

/* Horizontal Readout Block Panels Display Matrix */
.stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

.stat-box {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #444;
    font-weight: bold;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 6px;
}

.stat-box span:nth-child(2) {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin: 6px 0;
    font-family: monospace;
}

.box-caption {
    font-size: 10px;
    color: #666;
    font-weight: normal;
}

/* Mobilization Financial Trust Panel Component Grid UI */
.funding-trust-container {
    background: #fdfdfd;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.funding-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.funding-box-title {
    font-size: 11px;
    font-weight: bold;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.funding-bold-pct {
    font-size: 12px;
    font-weight: 800;
    color: #16a34a;
}

.funding-bar-track {
    background: #e2e8f0;
    border-radius: 6px;
    height: 10px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
}

.funding-bar-fill {
    background: #16a34a;
    height: 100%;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.funding-metrics-split {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

.fund-sub-box {
    flex: 1;
}

.fund-sub-box:last-of-type {
    text-align: right;
}

.fund-lbl {
    display: block;
    font-size: 10px;
    color: #64748b;
    font-weight: bold;
    margin-bottom: 2px;
}

.fund-val-big {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

/* WEBSITE PUBLIC TRAFFIC COUNTER STYLES */
.visitor-analytics-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visitor-analytics-title {
    font-size: 11px;
    font-weight: bold;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitor-number-badge {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

#visitor-count-value { font-family: monospace; font-size: 14px; }
.visitor-badge-unit { font-size: 10px; color: #64748b; font-weight: normal; }

/* MEMBERSHIP REGISTRATION FORM LAYOUTS */
.membership-enrollment-panel {
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 16px;
    margin-bottom: 25px;
    text-align: left;
}

.membership-enrollment-panel h4 {
    font-size: 14px;
    color: #0f172a;
    font-weight: bold;
    margin-bottom: 4px;
    text-align: center;
}

.enrollment-sub-text {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.input-form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-form-group label {
    font-size: 11px;
    font-weight: bold;
    color: #334155;
    text-transform: uppercase;
    text-align: left;
    display: block;
}

.input-form-group input {
    padding: 10px;
    font-size: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    width: 100%;
    color: #0f172a;
    background: #ffffff;
}

/* This fixes the broken options showing in your image */
.input-form-group select {
    padding: 10px;
    font-size: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    width: 100%;
    color: #0f172a;
    background: #ffffff url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 16px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 35px;
}

.input-form-group input:focus, .input-form-group select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.dues-invoice-readout-card {
    background: #f1f5f9;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #475569;
    margin-bottom: 4px;
}

.invoice-row span:last-child { font-weight: bold; color: #0f172a; }

.invoice-row.total-row {
    border-top: 1px dashed #cbd5e1;
    padding-top: 6px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: bold;
    color: #0f172a;
}
.invoice-row.total-row span:last-child { color: #16a34a; font-size: 13px; }

.submit-form-action-btn {
    width: 100%;
    padding: 11px;
    background: #16a34a;
    color: white;
    font-size: 13px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.submit-form-action-btn:hover { background: #15803d; }
.submit-form-action-btn:disabled { background: #cbd5e1; cursor: not-allowed; }

.form-success-notification {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.5;
    text-align: center;
}

/* COORDINATION HUB LINK BOX STYLES */
.official-contacts-hub-container {
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 25px;
    text-align: left;
}

.official-contacts-hub-container h4 { font-size: 13px; font-weight: bold; color: #0f172a; margin-bottom: 4px; text-align: center; }
.contacts-hub-intro { font-size: 11px; color: #64748b; text-align: center; margin-bottom: 12px; line-height: 1.4; }
.contact-links-stack { display: flex; flex-direction: column; gap: 8px; }
.contact-hyperlink-item { display: block; background: #f8fafc; border: 1px solid #edf2f7; border-radius: 6px; padding: 10px; font-size: 12px; color: #475569; text-decoration: none; font-weight: bold; }
.contact-hyperlink-item span { color: #2563eb; font-family: monospace; font-size: 13px; }
.contact-hyperlink-item:hover { background: #f1f5f9; border-color: #cbd5e1; }

/* Contribution and Donation Payment Methods Grid Block */
.support-panel {
    border-top: 1px solid #eee;
    padding-top: 25px;
    text-align: left;
}

.support-panel h3 {
    font-size: 14px;
    color: #111;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.support-desc {
    font-size: 12px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
}

.channels-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-card {
    background: #fdfdfd;
    border: 1px solid #eee;
   border-radius: 6px;
   padding: 12px;

}

.card-header {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.data-row:last-of-type {
    margin-bottom: 0;
}

.lbl { 
    font-size: 11px;
    color: #556;
    font-weight: bold; 
}

.val { 
    font-size: 12px; 
    font-weight: bold; 
    color: #111; 
    font-family: monospace; 
    background: #f0f0f0; 
    padding: 2px 5px; 
    border-radius: 3px; 
}

.copy-btn {
    font-size: 10px;
    padding: 3px 8px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.copy-btn:hover { 
    background: #2980b9; 
}

.footnote { 
    font-size: 10px; 
    color: #666; 
    margin-top: 6px; 
    line-height: 1.3; 
    font-style: italic; 
}
