/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0d1117;
    --surface: #161b22;
    --border: #30363d;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --accent: #2b7de0;
    --accent-hover: #3a8ef0;
    --link: #58a6ff;
    --success: #3fb950;
    --warning: #d29922;
    --danger: #f85149;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #79c0ff;
}

button {
    cursor: pointer;
    font-family: inherit;
}

input, select {
    font-family: inherit;
}

/* ==================== LOADING INDICATOR ==================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== TOP NAV ==================== */
.top-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent);
}

.nav-logo {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ==================== HERO ==================== */
.hero {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-logo {
    height: 140px;
    width: auto;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ==================== FILTER SECTION ==================== */
.filter-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 20px;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-bar label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.filter-bar select {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    min-width: 200px;
    outline: none;
    transition: border-color 0.2s;
}

.filter-bar select:focus {
    border-color: var(--accent);
}

/* ==================== TABLES ==================== */
.pools-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table thead {
    background: rgba(255,255,255,0.03);
}

.data-table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    color: var(--text-primary);
}

.data-table tbody tr {
    transition: background 0.15s;
}

.data-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table a {
    color: var(--link);
}

/* ==================== FOOTER ==================== */
.site-footer {
    text-align: center;
    padding: 30px 24px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-partner {
    display: inline-block;
    margin-top: 12px;
}

.footer-logo {
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-logo:hover {
    opacity: 1;
}

/* ==================== POOL LAYOUT ==================== */
#main-index,
#main-pool {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.pool-layout {
    flex: 1;
}

/* ==================== POOL NAV LINKS ==================== */
.pool-nav .nav-inner {
    max-width: 100%;
}

.pool-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 24px;
}

.pool-nav-coin {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid var(--border);
}

.pool-nav-coin-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.pool-nav-coin-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.pool-nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius);
    transition: all 0.15s;
    white-space: nowrap;
}

.pool-nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.05);
}

.pool-nav-link.active {
    color: var(--accent) !important;
    background: rgba(43, 125, 224, 0.1);
}

.pool-nav-link i {
    margin-right: 4px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}

.copy-text {
    cursor: pointer;
    transition: color 0.2s;
}

.copy-text:hover {
    color: var(--accent);
}

.region-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 6px;
}

/* ==================== POOL CONTENT ==================== */
.pool-content {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pool-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    transition: background 0.2s, transform 0.2s;
}

.scroll-top-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ==================== CHART GRID ==================== */
.chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.chart-card.full-width {
    margin-bottom: 30px;
    position: relative;
    height: 280px;
}

.chart-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.chart-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
}

.chart-card canvas {
    width: 100% !important;
    max-height: 220px;
}

.chart-toggle {
    cursor: pointer;
    user-select: none;
}

.toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.2s;
    margin-left: 4px;
}

.collapsible.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.chart-body {
    position: relative;
}

.collapsible.collapsed .chart-body {
    display: none;
}

/* ==================== STATS GRID ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.mini-stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    transition: border-color 0.2s;
}

.mini-stat-card:hover {
    border-color: var(--accent);
}

.mini-stat-card.accent {
    border-top: 2px solid var(--accent);
}

.mini-stat-card.wide {
    position: relative;
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.mini-stat-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-all;
}

/* ==================== INLINE STATS ==================== */
.inline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.inline-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.inline-stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dash-inline-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ==================== DASHBOARD ==================== */
.wallet-input-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-input-bar input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.wallet-input-bar input:focus {
    border-color: var(--accent);
}

.wallet-input-bar input::placeholder {
    color: var(--text-secondary);
}

.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.table-section {
    margin-bottom: 30px;
}

.table-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
}

.btn-small {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
    transition: background 0.2s;
}

.btn-small:hover {
    background: var(--accent-hover);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
}

/* ==================== TABS ==================== */
.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tab-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.tab-btn.active .badge {
    background: rgba(255,255,255,0.25);
}

/* ==================== WARNING CARD ==================== */
.warning-card {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(210, 153, 34, 0.08);
    border: 1px solid rgba(210, 153, 34, 0.3);
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.warning-card i {
    color: var(--warning);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==================== MINER CONFIG ==================== */
.miner-config-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-primary);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

/* ==================== FAQ ==================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-question i {
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ==================== SUPPORT ==================== */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 820px;
}

.support-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 24px;
}

.support-card > i {
    color: #229ED9;
    margin-bottom: 16px;
}

.support-card:last-child > i {
    color: var(--accent);
}

.support-card .btn-primary i {
    color: #fff;
}

.support-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.support-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ==================== LEGAL PAGES ==================== */
#main-legal {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.legal-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ==================== TERMS OF SERVICE ==================== */
.tos-content {
    max-width: 800px;
}

.tos-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.tos-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tos-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.tos-section p:last-child {
    margin-bottom: 0;
}

.tos-section ul {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-left: 20px;
    margin: 8px 0;
}

.tos-section a {
    color: var(--accent);
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    margin: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--accent);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chart-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .pool-nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 12px 16px;
        gap: 2px;
        margin-left: 0;
        z-index: 99;
    }

    .pool-nav-links.open {
        display: flex;
    }

    .pool-nav-coin {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 8px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .pool-nav-coin-logo {
        width: 26px;
        height: 26px;
    }

    .pool-nav-coin-name {
        font-size: 0.95rem;
    }

    .pool-nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
        width: 100%;
    }

    .pool-content {
        padding: 20px 16px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-stats-row {
        grid-template-columns: 1fr;
    }

    .wallet-input-bar {
        flex-direction: column;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .inline-stats {
        flex-direction: column;
        gap: 12px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-bar select {
        width: 100%;
    }

    .nav-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dash-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.35rem;
    }

    .pool-content h2 {
        font-size: 1.25rem;
    }
}

/* ==================== POOL ROW CLICKABLE ==================== */
.pool-row:hover {
    background: rgba(156, 39, 176, 0.06) !important;
}

/* ==================== EFFORT COLORS (inline fallback) ==================== */
.effort0 { color: #50C878; }
.effort1 { color: #FFA500; }
.effort2 { color: #FF8C00; }
.effort3 { color: #FF6347; }
.effort4 { color: #FF4500; }

/* ==================== PROGRESS BAR ==================== */
.progress-bar-inline {
    background: #238636;
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.75rem;
    text-align: center;
    display: inline-block;
}

/* ==================== COIN IMG IN TABLE ==================== */
.data-table img {
    vertical-align: middle;
}

/* ==================== CHART CONTAINER HEIGHT ==================== */
.chart-card {
    position: relative;
}

.chart-card canvas {
    height: 200px !important;
}
