.metals-spot-container {
    background-color: #121212;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.metals-spot-header {
    font-size: 14px;
}

.current-time-wrp {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 15px 10px;
    margin-bottom: 20px;
}

p.market-status {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-family: 'ProximaNova-Semibold';
    padding-bottom: 0;
}

.metal-card {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.metal-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
}

.metal-card-body {
    display: flex;
    justify-content: space-between;
}
.price-change.price-up {
    background: green;
}
.price-change {
    padding: 4px 10px;
    border-radius: 30px;
    color: white;
    font-size: 12px;
}

.price-change.price-down {
    background: #FF2F2F;
}

.bid-price span {
    display: block;
    text-align: right;
}

.ask-price span {
    display: block;
    text-align: start;
} 

.metal-card-body p {
    justify-content: space-between;
    font-size: 16px;
    margin: 5px 0;
    padding-bottom: 0;
}

.metal-card-header p.metal-name {
    padding: 0;
    font-size: 18px;
    font-weight: 400;
}

.price-change i.fa-solid {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: 400;
}

.ask-price span, .bid-price span {
    font-size: 14px;
    color: gray;
}

span.bid-value,
span.ask-value {
    color: #EAEAEA;
    font-size: 20px;
    font-weight: 700;
}


@media only screen and (max-width: 767px) {
    p.market-status {
        display: block;
    }
    p.market-status span {
        display: inline-block;
    }
    p.market-status span.first-time {
        padding-bottom: 8px;
    }
}

@media only screen and (max-width: 991px) {
    span.bid-value, span.ask-value {
        color: #EAEAEA;
        font-size: 16px;
        font-weight: 700;
    }
    p.market-status {
        display: block;
    }
    p.market-status span {
        display: inline-block;
    }
    p.market-status span.first-time {
        padding-bottom: 8px;
    }
}