body {
    min-width: 360px !important;
}

/* PreciousMetalCrypto Ticker Bar Styling */
#pmc-ticker-bar-container {
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pmc-ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.pmc-ticker-move {
    display: inline-block;
    /* Animation will be applied by JavaScript */
}

.pmc-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 5px 20px;
    margin: 0 15px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.pmc-ticker-item .pmc-symbol {
    font-weight: 600;
    margin-right: 8px;
    color: #333;
}

.pmc-ticker-item .pmc-price {
    color: #555;
    margin-right: 10px;
}

.pmc-ticker-item .pmc-change {
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    color: #fff;
    font-size: 12px;
    background-color: #6c757d; /* Neutral grey for 0% */
}

.pmc-ticker-item .pmc-change.positive {
    background-color: #62c175; /* Green for positive change */
}

.pmc-ticker-item .pmc-change.negative {
    background-color: #e47474; /* Red for negative change */
}