.metal-top-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #111;
    padding: 10px;
}

.metal-top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 14px;
    background: #222;
    border-radius: 5px;
    transition: 0.3s ease;
}

.metal-top-bar a:hover {
    background: #ff914c;
    color: #000;
}
.chart-block {
    margin-bottom: 40px; /* space between each section */
}
.custom-gold-table {
	 margin-bottom: 40px; /* space between each section */
}
.mobile-spot-heading {
    display: none;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    padding: 7px 0;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-spot-heading {
        display: block;
        color: #fff;
    }
	.metal-top-price {
        display: flex;
        gap: 2px;
    }
}



.gold-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.gold-table th {
	color: #000;
    padding: 10px;
    text-align: left;
    border: 1px solid #787F1E;
}

.gold-table td {
    padding: 8px;
    border: 1px solid #787F1E;
	color: #1e1e1b;
}

.gold-table tr:nth-child(even) {
    background: #fff;
}

.gold-table .green {
    color: #1ca64c;
    font-weight: bold;
}

.gold-table .red {
    color: #d93025;
    font-weight: bold;
}
