/* Tool 2: Layout & Grid */
.proj-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
    margin-bottom: 20px;
}

.param-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.param-row label {
    font-weight: bold;
    color: #555;
    font-size: 13px;
}

/* Einheitliche Höhe für ALLE kleinen Eingabefelder */
.input-small, 
.eta-box, 
#proj-start-time {
    height: 28px !important;
    padding: 0 8px !important; /* Horizontales Padding */
    box-sizing: border-box;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: normal;
}

/* Spezifische Feld-Breiten */
#proj-course, #proj-dist { width: 65px; }
#proj-knots { width: 55px; }
#proj-h { width: 40px; }
#proj-m { width: 45px; }
#proj-start-time { width: 90px; font-family: inherit; }
#res-eta-box { width: 85px; }

.unit-label {
    margin-left: 5px;
    color: #777;
    font-size: 13px;
}

.divider-dotted {
    border-top: 1px dotted #ccc;
    margin: 8px 0;
    padding-top: 8px;
}

.eta-box {
    background: #fff;
    font-weight: bold;
    color: #2b8a3e;
    margin-top: 12px;
    text-align: center;
    cursor: not-allowed;
}

/* Tool 2: Ergebnisanzeige im Footer */
.proj-result-footer {
    background: #ebfbee;
    border: 1px solid #b2f2bb;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.proj-result-footer h4 {
    margin: 0 0 12px 0;
    font-size: 1.1em;
    color: #2b8a3e;
    border-bottom: 1px solid #b2f2bb;
    padding-bottom: 8px;
}

.flex-result-vals {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.result-val-group {
    flex: 1;
}

.result-label {
    display: block;
    font-size: 0.85em;
    color: #555;
}

.result-number {
    font-size: 1.3em;
    font-weight: bold;
    color: #2b8a3e;
    white-space: nowrap;
}

.vertical-divider {
    height: 35px;
    border-left: 1px solid #b2f2bb;
    margin: 0 10px;
}
