.goldrechner {
    max-width: 600px;
    margin: 60px auto;   /* <- DAS zentriert den Block */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* Inhalte sauber ausrichten */
.goldrechner label {
    display: block;
    margin-top: 15px;
    text-align: left;
}

/* Inputs und Selects */
.goldrechner select,
.goldrechner input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Button */
#berechnen {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #c9a227;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

/* Ergebnis optisch hervorheben */
#ergebnis {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.page .goldrechner {
    display: block;
}