.zinsrechner-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

.zinsrechner-left, .zinsrechner-right {
    flex: 1 1 50%;
    min-width: 300px; /* sorgt dafür, dass es bei kleinen Bildschirmen stacked */
}

.zinsrechner-left label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.zinsrechner-left input[type=number] {
    width: 80px;
    margin-left: 10px;
    margin-right: 10px;
}

.zinsrechner-left input[type=range] {
    width: 100%;
}

.zinsrechner-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
