/* EXIF Metadata Viewer WordPress Plugin Styles */

.exif-viewer-wrapper {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.exif-viewer-iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #f8fafc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .exif-viewer-wrapper {
        margin: 1rem 0;
    }
}

/* Loading state */
.exif-viewer-iframe[src=""] {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    0% {
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    }
    100% {
        background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px;
    }
}

/* WordPress admin integration */
.wp-admin .exif-viewer-wrapper {
    background: white;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    box-shadow: none;
}

/* Print styles */
@media print {
    .exif-viewer-wrapper {
        display: none;
    }
}