/* Minimal CSS for DSGVO Cookie Banner */
.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cookie-banner-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.cookie-banner-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-banner-header h3 {
    margin: 0;
    color: var(--dark, #0f172a);
    font-size: 1.25rem;
}

.cookie-banner-content {
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.95rem;
    color: var(--text-main, #334155);
    line-height: 1.5;
}

.cookie-banner-actions {
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-settings {
    display: none;
    margin-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.cookie-settings.show {
    display: block;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary, #009688);
}

.cookie-option label {
    font-weight: 600;
    color: var(--dark, #0f172a);
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light, #64748b);
}

/* Platzhalter für externe Medien (z.B. Google Maps) */
.external-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: inherit;
    border: 1px dashed #cbd5e1;
}

.external-media-placeholder p {
    margin-bottom: 1rem;
    color: var(--text-main, #334155);
}