.ger-container {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.ger-container h2 {
    text-align: center;
    color: #222;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.ger-container label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 15px;
    color: #444;
}

.ger-container input,
.ger-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background: #fafafa;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.ger-container input:focus,
.ger-container select:focus {
    border-color: #BD9A68;
    background: #fff;
    outline: none;
}

.ger-container button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background-color: #BD9A68;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.ger-container button:hover {
    background-color: #a37f4f;
    transform: translateY(-2px);
}

.ergebnis-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 25px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    background-color: #2ecc71;
    border-radius: 6px;
    border: 1px solid #27ae60;
    min-width: 120px;
    min-height: 80px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .ger-container {
        padding: 20px 15px;
    }

    .ergebnis-box {
        min-width: 100px;
        min-height: 60px;
        font-size: 28px;
    }
}
