/* assets/css/embed.css - Premium Version */
:root {
    --marine-dark: #001f3f;
    --marine-medium: #003366;
    --marine-light: #004080;
    --accent: #00d2ff;
    --text-color: #ffffff;
    --placeholder: #aab8c2;
    --red: #ff6b6b;
    --orange: #feca57;
    --green: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: transparent; /* Hintergrund kommt vom Iframe-Container */
    margin: 0;
    padding: 0;
    color: var(--text-color);
    overflow-x: hidden;
}

#embed-container {
    width: 100%;
    /* Der Hintergrund, falls es nicht im Iframe ist */
    background: linear-gradient(135deg, rgba(0, 31, 63, 1) 0%, rgba(0, 51, 102, 1) 100%);
    box-sizing: border-box;
    padding: 20px; /* Mehr Luft nach außen */
    min-height: 300px; /* Mindesthöhe damit es nicht zusammenfällt */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Layout Hilfsklassen */
.form-row {
    margin-bottom: 15px; /* Abstand zwischen den Zeilen */
    width: 100%;
}

.flex-row {
    display: flex;
    gap: 20px; /* Abstand zwischen Interpret und Titel */
}

.flex-col {
    flex: 1; /* Nimmt gleichmäßig Platz ein */
}

/* Styling der Labels */
.input-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-icon {
    margin-right: 8px;
    opacity: 0.9;
    font-size: 1rem;
}

/* Styling der Inputs */
input[type="text"], textarea {
    width: 100%;
    padding: 12px 15px; /* Größere Felder */
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    outline: none;
}

textarea {
    resize: none;
    height: 80px; /* Etwas höher als vorher */
}

/* Platzhalter Farbe */
::-webkit-input-placeholder { color: var(--placeholder); opacity: 0.7; }
::-moz-placeholder { color: var(--placeholder); opacity: 0.7; }
:-ms-input-placeholder { color: var(--placeholder); opacity: 0.7; }

/* Button */
button#submitBtn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--marine-medium), var(--marine-light));
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

button#submitBtn:hover {
    background: var(--accent);
    color: var(--marine-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

button#submitBtn:disabled {
    background: #555;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Nachrichten Boxen (Gesperrt, Geschlossen, Erfolg) */
.msg-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 250px;
}

.msg-box {
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}
.msg-box h3 { margin: 15px 0 10px 0; font-size: 1.5rem; text-transform: uppercase; }
.msg-box p { font-size: 1.1rem; opacity: 0.9; margin: 0; }
.msg-icon { font-size: 3rem; opacity: 0.8; }

.text-red { color: var(--red); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }

#responseMsg {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 25px;
    font-size: 1.1rem;
}

/* Mobile Anpassung: Wenn es sehr eng wird, untereinander */
@media (max-width: 500px) {
    .flex-row { flex-direction: column; gap: 15px; }
}