/* previous gold color - panagiotis gold: #DAA520 */

.live-prices-container {
    display: flex;
    align-items: center; /* Κάθετη στοίχιση στο κέντρο */
    gap: 12px; /* Απόσταση μεταξύ του "Live Prices" και του carousel */
	/* border-top: 1px solid #BFA960; */
	/* border-bottom: 1px solid #BFA960; */
}

.live-prices-label {
    font-size: 1.2em;
    font-weight: bold;
    color: #BFA960;
    white-space: nowrap; /* Αποφυγή περιτυλίγματος */
}

.metals-carousel {
    display: flex;
    align-items: center;
    width: 94%;

}


.metal-item {
    text-align: center;
    /*background: #f7f7f7;*/
    padding: 10px;
    /*border: 1px solid #ddd;*/
    /*border-radius: 5px;*/
    /*width: 15%;*/
    font-size:16px;
	font-weight:700;
    color: #ffffff ;
    white-space: nowrap;
	text-transform: uppercase;
	letter-spacing:1.1px;
}

.metal-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}


.metal-item-sm {
   font-size:14px;
   font-weight: 300;
}

.metal-item p {
    margin: 5px 0;
}


.metal-name {
    position: relative;
    padding-left: 18px; /* λίγο κενό για το τριγωνάκι */
    display: inline-block;
}

.metal-name.price-up:before,
.metal-name.price-down:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}

.metal-name.price-up:before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid green; /* Πράσινο τρίγωνο προς τα πάνω */
}

.metal-name.price-down:before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid red; /* Κόκκινο τρίγωνο προς τα κάτω */
}


@media (max-width: 1100px) {
    .metal-item {
        width:10%;
        font-size:12px;

    }

}

@media (max-width: 570px) {
    .metals-carousel {width:100%;}
    .live-prices-label {display:none;}
    .metal-item {}
}
