
.gdpr-google-maps-container {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.gdpr-maps-placeholder {
    position: relative;
    background-color: #f5f5f5;
    background-image: 
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%), 
        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #e0e0e0 75%), 
        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gdpr-maps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245, 245, 245, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gdpr-maps-content {
    text-align: center;
    padding: 20px;
    max-width: 80%;
}

.gdpr-maps-notice {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.gdpr-maps-load-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.gdpr-maps-load-btn:hover {
    background-color: #3367d6;
}

.gdpr-maps-load-btn:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

.gdpr-maps-info {
    color: #666;
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

.gdpr-maps-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Loading state */
.gdpr-maps-loading .gdpr-maps-load-btn {
    background-color: #ccc;
    cursor: not-allowed;
}

.gdpr-maps-loading .gdpr-maps-load-btn:before {
    content: "Lädt...";
}

/* Responsive */
@media (max-width: 768px) {
    .gdpr-maps-notice {
        font-size: 14px;
    }
    
    .gdpr-maps-load-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .gdpr-maps-content {
        padding: 15px;
        max-width: 90%;
    }
}
