﻿/* Container for the quote-card shortcode */
.gbcharts-quote-card {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

    /* Headings */
    .gbcharts-quote-card h2 {
        font-size: 30px;
        margin: 0 0 8px;
    }

    /* Gain display */
    .gbcharts-quote-card .gain {
        font-size: 16px;
        margin-bottom: 10px;
    }

        .gbcharts-quote-card .gain.positive {
            color: #2e7d32;
        }

        .gbcharts-quote-card .gain.negative {
            color: #c62828;
        }

    /* As-of-date */
    .gbcharts-quote-card .as-of-date {
        font-size: 13px;
        color: #666;
        margin-bottom: 15px;
    }

    /* Data table */
    .gbcharts-quote-card table {
        width: 100%;
        font-size: 14px;
        margin-top: 15px;
        border-collapse: collapse;
    }

    .gbcharts-quote-card td {
        padding: 4px 8px;
    }

        .gbcharts-quote-card td:nth-child(odd) {
            font-weight: bold;
        }
