/*
Theme Name: Al-Mumin Association
Theme URI: https://al-mumin.com
Author: Al-Mumin Association
Author URI: https://al-mumin.com
Description: Complete Shareholder Management System for Al-Mumin Association
Version: 1.0.0
License: GPL v2 or later
Text Domain: al-mumin
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d6da8;
    --accent-color: #e8b931;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --border-color: #e9ecef;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================== */
/* HEADER STYLES */
/* ======================== */

.site-header {
    background: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-branding img {
    height: 50px;
    width: auto;
}

.site-branding h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-branding h1 span {
    color: var(--accent-color);
}

.site-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login,
.btn-dashboard {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
}

.btn-dashboard {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-dashboard:hover {
    background: #d4a820;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ======================== */
/* FOOTER STYLES */
/* ======================== */

.site-footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* ======================== */
/* ADMIN DASHBOARD */
/* ======================== */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--primary-color);
    color: #fff;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-brand {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-brand img {
    height: 60px;
    margin-bottom: 10px;
}

.sidebar-brand h2 {
    font-size: 20px;
    font-weight: 700;
}

.sidebar-brand h2 span {
    color: var(--accent-color);
}

.sidebar-brand p {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 5px;
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-section {
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 1px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    gap: 12px;
}

.sidebar-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.sidebar-nav a.active {
    background: rgba(255,255,255,0.15);
    color: var(--accent-color);
    border-right: 3px solid var(--accent-color);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
}

/* Admin Main Content */
.admin-main {
    margin-left: 260px;
    padding: 25px;
    flex: 1;
    background: var(--light-bg);
}

.admin-header {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.admin-header h1 {
    font-size: 24px;
    color: var(--primary-color);
}

.admin-header p {
    color: #666;
    font-size: 14px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-info h3 {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-details {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Payment Structure */
.payment-structure {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--accent-color);
}

.payment-structure h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.structure-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.structure-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 8px;
}

.structure-item .label {
    color: #666;
}

.structure-item .value {
    font-weight: 600;
    color: var(--primary-color);
}

.structure-item .value.highlight {
    color: var(--accent-color);
    font-weight: 800;
}

/* Quick Actions */
.quick-actions {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.quick-actions h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background: var(--secondary-color);
    color: #fff;
}

.action-btn.success {
    background: var(--success-color);
    color: #fff;
}

.action-btn.info {
    background: #1abc9c;
    color: #fff;
}

.action-btn.warning {
    background: var(--warning-color);
    color: #fff;
}

.action-btn.danger {
    background: var(--danger-color);
    color: #fff;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ======================== */
/* MEMBERS TABLE */
/* ======================== */

.table-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    overflow-x: auto;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container thead {
    background: var(--light-bg);
}

.table-container th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid var(--border-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-container td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.table-container tbody tr:hover {
    background: rgba(45, 109, 168, 0.05);
}

.member-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.status-badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.suspended {
    background: #fff3cd;
    color: #856404;
}

.status-badge.paid {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.failed {
    background: #f8d7da;
    color: #721c24;
}

/* Action Icons */
.action-icons {
    display: flex;
    gap: 8px;
}

.action-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: var(--transition);
    color: #666;
}

.action-icons a:hover {
    transform: translateY(-2px);
}

.action-icons a.view {
    color: var(--secondary-color);
}
.action-icons a.view:hover {
    background: rgba(45, 109, 168, 0.1);
}

.action-icons a.edit {
    color: var(--warning-color);
}
.action-icons a.edit:hover {
    background: rgba(243, 156, 18, 0.1);
}

.action-icons a.delete {
    color: var(--danger-color);
}
.action-icons a.delete:hover {
    background: rgba(231, 76, 60, 0.1);
}

/* Search and Filter */
.search-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.search-box input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-box button {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-color);
}

.filter-options {
    display: flex;
    gap: 10px;
}

.filter-options select {
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    outline: none;
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #666;
}

.pagination-controls {
    display: flex;
    gap: 5px;
}

.pagination-controls a {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #666;
    transition: var(--transition);
}

.pagination-controls a:hover,
.pagination-controls a.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.pagination-controls a.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ======================== */
/* FORMS */
/* ======================== */

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-grid.single-column {
    grid-template-columns: 1fr;
}

.form-section {
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 109, 168, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #fff;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.file-upload label:hover {
    border-color: var(--secondary-color);
    background: rgba(45, 109, 168, 0.05);
}

/* Calculated Fields */
.calculated-fields {
    margin: 20px 0;
    padding: 20px;
    background: rgba(45, 109, 168, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(45, 109, 168, 0.1);
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.calc-item label {
    font-weight: normal;
    color: #666;
}

.calc-item input {
    width: auto;
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: right;
}

/* Calculated Results */
.calculated-results {
    margin: 20px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.result-item {
    padding: 12px;
    background: #fff;
    border-radius: 6px;
    text-align: center;
}

.result-item.highlight {
    background: rgba(232, 185, 49, 0.1);
    border: 1px solid var(--accent-color);
}

.result-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ======================== */
/* MEMBER DASHBOARD */
/* ======================== */

.member-wrapper {
    min-height: 100vh;
    background: var(--light-bg);
}

.member-header {
    background: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.member-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-header .logo h2 {
    color: #fff;
    font-weight: 700;
}

.member-header .logo h2 span {
    color: var(--accent-color);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.user-profile img {
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.user-profile .user-name {
    font-weight: 600;
}

.logout-btn {
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.logout-btn:hover {
    background: var(--danger-color);
    border-color: var(--danger-color);
}

.member-main {
    padding: 30px 0;
}

.welcome-section h1 {
    font-size: 32px;
    color: var(--primary-color);
}

.welcome-section p {
    color: #666;
}

/* Payment History Table */
.payment-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th {
    text-align: left;
    padding: 12px 15px;
    background: var(--light-bg);
    font-weight: 600;
    color: #666;
}

.payment-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

/* Activity Timeline */
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    padding: 12px 15px;
    border-left: 3px solid var(--secondary-color);
    background: #fff;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.timeline-icon {
    font-size: 20px;
}

.timeline-content p {
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 12px;
    color: #999;
}

/* ======================== */
/* LOGIN PAGE */
/* ======================== */

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
}

.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 420px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header .logo {
    font-size: 48px;
    margin-bottom: 10px;
}

.login-header .brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.login-header .brand-name span {
    color: var(--accent-color);
}

.login-header p {
    color: #666;
    margin-top: 5px;
}

.login-form .input-group {
    position: relative;
}

.login-form .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.login-form .input-group input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.login-form .input-group input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 109, 168, 0.1);
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    color: var(--secondary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    color: #666;
}

.login-footer a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ======================== */
/* RESPONSIVE DESIGN */
/* ======================== */

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 70px;
    }
    
    .sidebar-brand h2,
    .sidebar-brand p,
    .sidebar-nav a span,
    .nav-section {
        display: none;
    }
    
    .sidebar-nav a {
        justify-content: center;
        padding: 15px;
    }
    
    .sidebar-nav a i {
        font-size: 20px;
    }
    
    .admin-main {
        margin-left: 70px;
        padding: 15px;
    }
    
    .search-filter {
        flex-direction: column;
    }
    
    .search-box {
        width: 100%;
    }
    
    .filter-options {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .filter-options select {
        flex: 1;
        min-width: 120px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .member-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .user-profile {
        width: 100%;
        justify-content: space-between;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .main-navigation ul.show {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-details {
        grid-template-columns: 1fr;
    }
    
    .login-container {
        padding: 25px;
    }
    
    .table-container {
        font-size: 13px;
    }
    
    .table-container th,
    .table-container td {
        padding: 10px 12px;
    }
    
    .action-icons {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ======================== */
/* UTILITY CLASSES */
/* ======================== */

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

.rounded { border-radius: 8px; }
.shadow { box-shadow: var(--box-shadow); }

.change {
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
}

.change.positive {
    color: #155724;
    background: #d4edda;
}

.change.negative {
    color: #721c24;
    background: #f8d7da;
}

.change.neutral {
    color: #856404;
    background: #fff3cd;
}

/* Al-Mumin Association Specific Styles */
.association-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--secondary-color);
}