/* DeeSpot Custom Embed Styles */

.deespot-embed-preview {
    max-width: 600px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
}

.deespot-embed-preview:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.deespot-embed-preview .embed-header {
    padding: 16px;
    background: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
}

.deespot-embed-preview .embed-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.deespot-embed-preview .embed-description {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.deespot-embed-preview .embed-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.deespot-embed-preview .embed-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.deespot-embed-preview .embed-button:hover {
    background: #005a87;
    color: white;
}

.deespot-embed-preview .embed-author {
    font-size: 12px;
    color: #888;
}

.deespot-embed-preview .embed-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

/* Admin editor styles */
.wp-block-embed .deespot-embed-preview {
    margin: 0;
}

.block-editor .deespot-embed-preview {
    margin: 10px 0;
}

/* Responsive design */
@media (max-width: 600px) {
    .deespot-embed-preview {
        max-width: 100%;
    }
    
    .deespot-embed-preview .embed-title {
        font-size: 16px;
    }
    
    .deespot-embed-preview .embed-description {
        font-size: 13px;
    }
    
    .deespot-embed-preview .embed-image {
        height: 150px;
    }
}
