/* Weitere Styles in base.css müssen noch heirhin übertragen werden. */

/* Standort Detail */

.map-optin {
    position: relative;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
}

.map-optin iframe {
    border: 0;
}

.map-preview {
    display: block;
    width: 100%;
    height: auto;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.map-btn {
    background: #2581C4;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.map-optin:hover {
    background: #1f6aa1;
    transform: scale(1.01) translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.map-optin {
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.map-hint {
    font-size: 0.9rem;
    line-height: 1rem;
    max-width: 400px;
}

.map-hint a {
    color: #fff;
    text-decoration: underline;
}