/* Naturheilpraxis Secure Upload – Styles */

.nhsu-container {
    max-width: 600px;
    margin: 2em auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nhsu-form {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 1.75em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nhsu-intro {
    font-size: 0.95em;
    color: #4a4a4a;
    margin: 0 0 1.5em;
    line-height: 1.5;
    padding: 0.75em 1em;
    background: #f5f8f5;
    border-left: 3px solid #6b9b6b;
    border-radius: 4px;
}

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

.nhsu-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4em;
    color: #333;
}

.nhsu-optional {
    font-weight: normal;
    color: #888;
    font-size: 0.9em;
}

.nhsu-field input[type="email"],
.nhsu-field input[type="file"] {
    width: 100%;
    padding: 0.6em 0.75em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    background: #fff;
}

.nhsu-field input[type="email"]:focus,
.nhsu-field input[type="file"]:focus {
    outline: none;
    border-color: #6b9b6b;
    box-shadow: 0 0 0 2px rgba(107, 155, 107, 0.2);
}

.nhsu-hint {
    display: block;
    margin-top: 0.4em;
    color: #666;
    font-size: 0.85em;
    line-height: 1.4;
}

.nhsu-button {
    background: #6b9b6b;
    color: #fff;
    border: none;
    padding: 0.75em 1.5em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
}

.nhsu-button:hover:not(:disabled) {
    background: #578257;
}

.nhsu-button:disabled {
    background: #aac0aa;
    cursor: not-allowed;
}

.nhsu-status {
    margin-top: 1em;
    padding: 0.75em 1em;
    border-radius: 4px;
    font-size: 0.95em;
    display: none;
}

.nhsu-status.nhsu-info,
.nhsu-status.nhsu-ok,
.nhsu-status.nhsu-err {
    display: block;
}

.nhsu-status.nhsu-info {
    background: #eaf3fb;
    color: #1f5a88;
    border-left: 3px solid #1f5a88;
}

.nhsu-status.nhsu-ok {
    background: #eaf6ea;
    color: #2e6b2e;
    border-left: 3px solid #2e6b2e;
}

.nhsu-status.nhsu-err {
    background: #fbeaea;
    color: #8b2020;
    border-left: 3px solid #8b2020;
}

.nhsu-error {
    background: #fbeaea;
    color: #8b2020;
    padding: 1em;
    border-radius: 4px;
    border-left: 3px solid #8b2020;
}

/* Mobile */
@media (max-width: 600px) {
    .nhsu-form {
        padding: 1.25em;
    }
    .nhsu-container {
        margin: 1em auto;
    }
}
