:root {
    --primary-blue: #2c3e50;
    --secondary-blue: #34495e;
    --accent-gold: #f1c40f;
    --accent-gold-hover: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-color: #f0f4f8;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --error-color: #e74c3c;
    --success-color: #2ecc71;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow-x: hidden;
}

/* Background Animated Blobs */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #3498db;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #f1c40f;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--primary-blue);
    color: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    border-bottom: 5px solid var(--accent-gold);
}

.header-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.header-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.08) rotate(3deg);
}

.club-info {
    flex-grow: 1;
}

@media (max-width: 600px) {
    .header-logo-container {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}

.club-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.club-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.club-id {
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--accent-gold);
}

.call-to-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.call-to-action h2 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    margin-left: 1rem;
}

.section-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.5rem;
}

.verification-msg {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.verification-msg.success {
    color: var(--success-color);
}

.verification-msg.error {
    color: var(--error-color);
}

/* Custom Radio Buttons */
.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-blue);
    position: relative;
    padding-left: 28px;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    transition: all 0.2s;
}

.custom-radio:hover input ~ .radio-mark {
    border-color: var(--primary-blue);
}

.custom-radio input:checked ~ .radio-mark {
    border-color: var(--primary-blue);
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.custom-radio input:checked ~ .radio-mark:after {
    display: block;
}

/* Hidden Class Utility */
.hidden {
    display: none !important;
}

/* Member Badge Styles */
.member-badge {
    margin-top: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.member-badge.hidden {
    display: none;
    opacity: 0;
}

.badge-header {
    background: var(--success-color);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-content {
    padding: 1rem;
    font-size: 0.95rem;
}

.badge-content p {
    margin-bottom: 0.4rem;
    color: #475569;
}

.badge-content p:last-child {
    margin-bottom: 0;
}

.badge-content strong {
    color: var(--primary-blue);
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

/* Validation error state */
input.input-error,
select.input-error,
textarea.input-error {
    border-color: var(--error-color) !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12) !important;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25%       { transform: translateX(-6px); }
    75%       { transform: translateX(6px); }
}

.field-error {
    display: block;
    color: var(--error-color);
    font-size: 0.82rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Success Toast */
.success-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a7a4a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.success-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Criteria Display Container */
.criteria-container {
    background: rgba(44, 62, 80, 0.05);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.criteria-container.hidden {
    display: none;
    opacity: 0;
}

.criteria-container h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

#criteriaList {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

#criteriaList li {
    margin-bottom: 0.5rem;
    color: #444;
}

.fee-display {
    font-size: 1.1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.fee-display strong {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: 1rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    margin-right: 10px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--primary-blue);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkmark:after {
    content: "";
    display: none;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox input.input-error ~ .checkmark {
    border-color: var(--error-color) !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12) !important;
}

/* File Uploads Grid */
.file-uploads-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .file-uploads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.file-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--primary-blue);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.file-input-wrapper:hover .btn-secondary {
    background: #cbd5e1;
}

.file-name {
    font-size: 0.9rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.form-group.file-upload small {
    display: block;
    margin-top: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
}

/* Buttons */
.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    width: 100%;
}

@media (min-width: 600px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 600px) {
    .glass-panel {
        padding: 1.5rem;
    }
    
    .club-info h1 {
        font-size: 1.4rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--error-color);
    text-decoration: none;
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 100%;
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #f8fafc;
}

.slide {
    width: 100%;
    display: none;
    border-radius: 8px;
    max-height: 60vh;
    object-fit: contain;
}

.slide.active {
    display: block;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 62, 80, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(44, 62, 80, 1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-blue);
}

/* Word Counter Styling */
.word-counter-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.4rem;
}

.word-counter {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(226, 232, 240, 0.6);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(203, 213, 225, 0.5);
    display: inline-flex;
    align-items: center;
}

.word-counter.warning-limit {
    color: #d97706;
    background: #fef3c7;
    border-color: #fde68a;
    box-shadow: 0 0 8px rgba(217, 119, 6, 0.15);
    animation: pulse-warn 1.5s infinite ease-in-out;
}

.word-counter.error-limit {
    color: var(--error-color);
    background: #fee2e2;
    border-color: #fca5a5;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.2);
    transform: scale(1.03);
}

@keyframes pulse-warn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Application Preview & Modal Styles */
.preview-row {
    display: flex;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.preview-row:last-child {
    border-bottom: none;
}

.preview-label {
    font-weight: 600;
    color: var(--primary-blue);
    flex: 0 0 200px;
}

.preview-value {
    color: #334155;
    flex: 1;
    word-break: break-word;
}

.preview-section-title {
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.2rem;
}

.preview-section-title:first-child {
    margin-top: 0;
}

@keyframes popIn {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .preview-row {
        flex-direction: column;
        gap: 0.2rem;
    }
    .preview-label {
        flex: auto;
    }
}

.preview-statement-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #e2e8f0;
}
.preview-statement-container:last-child {
    border-bottom: none;
}
.preview-statement-container strong {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 600;
}
.preview-statement-container p {
    background: #ffffff;
    border-left: 3px solid var(--accent-gold);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #334155;
    white-space: pre-wrap;
    border: 1px solid #e2e8f0;
    border-left-width: 3px;
    margin-top: 0.25rem;
}

/* Multi-step Form Wizard */
.stepper-wrapper {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    text-align: center;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #cbd5e1;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.15);
}

.step-item.active .step-label {
    color: var(--primary-blue);
}

.step-item.completed .step-circle {
    border-color: var(--success-color);
    background: var(--success-color);
    color: white;
}

.step-item.completed .step-label {
    color: var(--success-color);
}

.stepper-progress {
    position: absolute;
    top: 35px; /* Centers the progress bar behind the circles */
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
    border-radius: 2px;
}

.stepper-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-blue);
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Step Navigation Buttons */
.step-navigation .btn-secondary {
    background: #e2e8f0;
    color: var(--primary-blue);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.step-navigation .btn-secondary:hover {
    background: #cbd5e1;
    transform: translateY(-1px);
}

.step-navigation .btn-secondary:active {
    transform: translateY(0);
}

/* Stepper responsive layout */
@media (max-width: 600px) {
    .stepper-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .stepper-progress {
        top: 26px;
    }
}

/* Sidebar Drawer Styles */
.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -360px; /* Start hidden on the left */
    width: 360px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1050; /* Above stepper progress and modals */
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color, #cbd5e1);
}

.sidebar-drawer.open {
    left: 0;
}

.sidebar-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-blue);
    color: white;
}

.sidebar-drawer-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-sidebar-btn:hover {
    color: var(--accent-gold);
}

.sidebar-drawer-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
    background: #f8fafc;
}

/* Floating Search Button */
.floating-search-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--accent-gold);
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--accent-gold);
}

@media (max-width: 600px) {
    .sidebar-drawer {
        width: 100%;
        left: -100%;
    }
    .floating-search-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }
}

/* Search results list */
.sidebar-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.member-search-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.member-search-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.member-search-card h4 {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.member-search-card p {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.member-search-card p:last-child {
    margin-bottom: 0;
}

.member-search-card strong {
    color: #475569;
}

.member-search-card .badge-paid {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-top: 0.4rem;
}

.member-search-card .badge-paid.paid {
    background: #d1fae5;
    color: #065f46;
}

.member-search-card .badge-paid.unpaid {
    background: #fee2e2;
    color: #991b1b;
}

.btn-sidebar-use {
    margin-top: 0.6rem;
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.btn-sidebar-use:hover {
    background: var(--accent-gold-hover);
}



