/* Custom CSS for Membership Payment Page */


.membership-section {
            --primary-dark: #8bb04a;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --border-radius: 12px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
            line-height: 1.6 !important;
            color: var(--text-dark) !important;
            padding: 80px 0 !important;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
        }

        /* Card styles - scoped to membership section */
        .membership-section .card {
            border: none !important;
            border-radius: var(--border-radius) !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .membership-section .card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
        }

        .membership-section .card-header {
            border: none !important;
            border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
            background: var(--primary-dark) !important;
            padding: 24px !important;
        }

        .membership-benefits {
            background: rgba(139, 176, 74, 0.1);
            border-left: 4px solid var(--primary-dark);
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }

        .payment-method-card {
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .payment-method-card:hover {
            transform: scale(1.02);
        }

        /* Form styles - scoped to membership section */
        .membership-section .form-control {
            border-radius: 8px !important;
            border: 2px solid #e5e7eb !important;
            padding: 12px 16px !important;
            transition: all 0.3s ease !important;
            font-size: 16px !important;
        }

        .membership-section .form-control:focus {
            border-color: var(--primary-dark) !important;
            box-shadow: 0 0 0 3px rgba(139, 176, 74, 0.1) !important;
            outline: none !important;
        }

        .membership-section .form-label {
            font-weight: 600 !important;
            color: var(--text-dark) !important;
            margin-bottom: 8px !important;
        }

        .membership-section .btn-primary {
            background: var(--primary-dark) !important;
            border: none !important;
            padding: 14px 32px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            font-size: 16px !important;
            transition: all 0.3s ease !important;
            border-color: var(--primary-dark) !important;
        }

        .membership-section .btn-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 20px rgba(139, 176, 74, 0.3) !important;
            background: var(--primary-dark) !important;
            border-color: var(--primary-dark) !important;
        }

        .membership-section .btn-primary:focus {
            background: var(--primary-dark) !important;
            border-color: var(--primary-dark) !important;
            box-shadow: 0 0 0 0.25rem rgba(139, 176, 74, 0.25) !important;
        }

        .progress-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 60%;
            width: 80%;
            height: 2px;
            background: #e5e7eb;
            z-index: 1;
        }

        .step:last-child::after {
            display: none;
        }

        .step-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary-dark);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: relative;
            z-index: 2;
            margin-bottom: 8px;
        }

        .step.inactive .step-circle {
            background: #e5e7eb;
            color: #9ca3af;
        }

        .membership-section .alert {
            border-radius: 8px;
            border: none;
        }

        .contact-info {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
        }

        .file-upload-area {
            border: 2px dashed #d1d5db;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload-area:hover {
            border-color: var(--primary-dark);
            background: #f8fafc;
        }

        .file-upload-area.dragover {
            border-color: var(--primary-dark);
            background: rgba(139, 176, 74, 0.05);
        }

        .tooltip-icon {
            color: var(--text-light);
            margin-left: 5px;
            cursor: help;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 40px 0;
            }
            
            .progress-indicator {
                display: none;
            }
            
            .card-body {
                padding: 20px !important;
            }
        }
.membership-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 0;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-header h2 {
    margin: 0;
    font-weight: 300;
    font-size: 2.5rem;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: none;
}

.stats-card .card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-custom {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-right: 10px;
}

.search-form {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-custom {
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-success-custom {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.btn-warning-custom {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-info-custom {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.table-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f4;
}

.table tbody tr:hover {
    background-color: #f8f9ff;
    transition: all 0.3s ease;
}

.table-success {
    background-color: #d4edda !important;
}

.table-success:hover {
    background-color: #c3e6cb !important;
}

.member-id {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.member-name {
    font-weight: 600;
    color: #333;
}

.phone-number {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.payment-date {
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 12px;
}

.checkbox-custom {
    transform: scale(1.5);
    margin: 5px;
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.btn-sm-custom {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-sm-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state h4 {
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-actions {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.prepare-year-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: none;
}

.alert-custom {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.alert-success-custom {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger-custom {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

@media (max-width: 768px) {
    .page-header h2 {
        font-size: 2rem;
    }
    
    .search-form .row {
        flex-direction: column;
    }
    
    .search-form .col-md-3,
    .search-form .col-md-6 {
        margin-bottom: 15px;
    }
    
    .table-container {
        padding: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
}