/* ================================================
   preismeldung-international.css
   Formular: Internationalen Kraftstoffpreis melden
   ================================================ */

/* ---- Statusmeldungen ---- */
.pm-alert {
    border-radius: 6px;
    padding: 0.9em 1.1em;
    margin-bottom: 1.4em;
    line-height: 1.5;
    font-size: 0.97em;
}
.pm-alert--ok {
    background: #eafaf1;
    border: 1px solid #27ae60;
    color: #1a5c36;
}
.pm-alert--err {
    background: #fef0f0;
    border: 1px solid #e74c3c;
    color: #7b1c1c;
}

/* ---- Formular ---- */
.pm-form {
    max-width: 580px;
}

.pm-field {
    margin-bottom: 1.25em;
}

.pm-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35em;
    font-size: 0.93em;
    color: #333;
}

.pm-req {
    color: #c0392b;
    font-weight: bold;
    margin-left: 2px;
}

/* ---- Eingabefelder ---- */
.pm-input,
.pm-select {
    width: 100%;
    padding: 0.55em 0.8em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.97em;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s;
}
.pm-input:focus,
.pm-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52,152,219,.18);
}

.pm-select--land {
    max-width: 100%;
}

/* ---- Preis + Währung ---- */
.pm-price-row {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.pm-input--price {
    width: 130px;
    flex: 0 0 auto;
}
.pm-price-sep {
    color: #666;
    font-size: 0.9em;
    white-space: nowrap;
}
.pm-select--waehrung {
    width: 90px;
    flex: 0 0 auto;
}

.pm-hint {
    margin: 0.4em 0 0;
    color: #777;
    font-size: 0.88em;
    line-height: 1.4;
}

/* ---- Datum-Radios ---- */
.pm-radios {
    display: flex;
    flex-direction: column;
    gap: 0.45em;
}
.pm-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: normal;
    font-size: 0.95em;
    cursor: pointer;
}
.pm-radio-date {
    flex-wrap: wrap;
}
.pm-input--date {
    width: 120px;
    flex: 0 0 auto;
    padding: 0.3em 0.6em;
}
.pm-input--date:disabled {
    background: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

/* ---- Freitexthinweis ---- */
.pm-input--hinweis {
    max-width: 100%;
}

/* ---- hCaptcha ---- */
.pm-field--captcha {
    margin-top: 1.4em;
}

/* ---- Submit ---- */
.pm-submit-row {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: 1.4em;
    flex-wrap: wrap;
}
.pm-submit {
    padding: 0.65em 1.8em;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.pm-submit:hover {
    background: #d35400;
}
.pm-required-note {
    color: #888;
    font-size: 0.88em;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .pm-price-row {
        flex-wrap: wrap;
    }
    .pm-input--price,
    .pm-select--waehrung {
        width: auto;
        flex: 1 1 auto;
    }
}
