.metal_price_container {
    padding: 25px;
}

@media (max-width: 1000px) {
    .metal_price_container {
        margin-top: 50px;
    }
}

.metal-card { 
    border: 1px solid #0A7500; 
    border-radius: 8px; 
    padding: 20px; 
    margin-top: 10px; 
    /*background: #fff;*/
    width: 100%;
}

.grid-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
    gap: 15px; 
    text-align: center; 
}

.unit-group {
    /*background: #fdfdfd;*/
    border: 1px solid #0A7500;
    border-radius: 6px;
    padding: 10px;
    width: 200px;
}

.unit-group h4 {
    margin-top: 0;
    color: #34495e;
    color: white; 
    border-bottom: 2px solid #0A7500;
    display: inline-block;
    padding-bottom: 5px;
}

.weight-box { 
    border-bottom: 1px solid #0A7500; 
    padding: 10px 0; 
    
}

.price-val { 
    font-weight: bold; 
    color: #2c3e50; 
    color: white; 
    display: block; 
    font-size: 1.2em;
    margin-top: 10px;
}

.unit-label { 
    font-size: 0.8em; 
    color: #7f8c8d; 
    text-transform: uppercase;
    border-bottom: 1px solid #0A7500;
    padding: 5px;
}

/* Navigation */
.tab-nav { 
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    /*overflow-x: auto; */
    padding-bottom: 10px;
}
    
.tab-btn { 
    padding: 10px 20px; 
    cursor: pointer; 
    border: 1px solid #0A7500; 
    background: #021A00;
    color: white;
    border-radius: 5px;
}
.tab-btn.active { 
    background: #0A7500; 
    color: black;
    font-weight: bold;
}
.metal-section { 
    display: none;
    
}
.metal-section.active { 
    display: block;
}