/* Main container for the market pricing widget */
.market-pricing-widget {
    background-color: #013366;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: 0;
    color: #ecf0f1;
}

/* Heading style */
.market-pricing-widget h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #ee6352;
    border-bottom: 3px solid #ee6352;
    padding-bottom: 5px;
}
.market-pricing-widget strong {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}
/* Price data */
.market-pricing-widget p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Indicator colors */
.increase {
    color: green;
}

.decrease {
    color: #ee6352;
}
