body {
  margin: 0;
    font-family: Arial, sans-serif;
    background: #eef8fa;
    color: #123;
}



header {
    height: 70px;
    background: #087e8b;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;

    position: sticky;
    top: 0;
}

.bereich {
    background: white;
    padding: 25px;
    margin: 25px auto;
    max-width: 1000px;

    border-radius: 18px;

    box-shadow: 0 5px 20px rgba(0, 80, 90, 0.08);
}

.bereich h2 {
    margin-top: 0;
    color: #087e8b;
    font-size: 24px;
}

.beschreibung {
    color: #71858a;
    margin-top: -10px;
    margin-bottom: 25px;
}

.eingaben {
    display: flex;
    gap: 20px;
}

.eingabe {
    flex: 1;
}

.eingabe label {
    display: block;
    margin-bottom: 7px;

    font-weight: bold;
    color: #45656b;
}

.eingabe input {
    width: 100%;
    padding: 12px;

    border: 1px solid #ccdfe2;
    border-radius: 10px;

    font-size: 15px;
}

.eingabe input:focus {
    outline: none;
    border-color: #087e8b;
    box-shadow: 0 0 0 3px rgba(8, 126, 139, 0.1);
}

.standort-eingaben {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.karten-hinweis {
    color: #71858a;
    font-size: 14px;
    margin-bottom: 12px;
}

#map {
    width: 100%;
    height: 400px;

    border-radius: 15px;

    overflow: hidden;

    border: 2px solid #dcebed;
}

.messwerte {
    display: flex;
    gap: 20px;
}

.messwert {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px;

    border-radius: 15px;

    border: 1px solid #e1edef;
}

.messwert.wasser {
    background: #effaff;
}

.messwert.luft {
    background: #fff8ed;
}

.messwert-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: white;

    font-size: 24px;
}

.messwert-inhalt {
    flex: 1;
}

.messwert-inhalt label {
    display: block;

    margin-bottom: 8px;

    font-weight: bold;

    color: #45656b;
}

.temperatur-input {
    display: flex;
    align-items: center;

    gap: 8px;
}

.temperatur-input input {
    width: 100%;

    padding: 10px;

    border: 1px solid #ccdfe2;

    border-radius: 8px;

    font-size: 16px;
}

.temperatur-input input:focus {
    outline: none;
    border-color: #087e8b;
}

.temperatur-input span {
    color: #71858a;
    font-weight: bold;
}

.zeit-bereich {
    border-left: 5px solid #087e8b;
}

.zeit-bereich .eingabe input {
    background: #f8fcfc;
}

.button-bereich {
    text-align: center;

    margin: 35px auto;

    max-width: 1000px;
}

.button-bereich button {
    padding: 15px 30px;

    border: none;
    border-radius: 12px;

    background: #087e8b;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(8, 126, 139, 0.25);

    transition: 0.2s;
}

.button-bereich button:hover {
    background: #066b76;
    transform: translateY(-2px);
}
