/**
 * Inline styles for the admin analyze page
 */
/* Add styles for the analyzed image container */
.pictaffil-analyzed-image-container {
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.pictaffil-analyzed-image {
    max-height: 300px;
    overflow: auto;
    text-align: center;
}

.pictaffil-analyzed-image img {
    max-width: 100%;
    height: auto;
}

/* Add styles for the selected media container */
.pictaffil-selected-media-container {
    margin-top: 15px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.pictaffil-selected-media {
    max-height: 300px;
    overflow: auto;
    padding: 10px;
    text-align: center;
}

.pictaffil-selected-media img {
    max-width: 100%;
    height: auto;
}

/* Add styles for the media preview container */
.pictaffil-media-preview-container {
    margin-top: 15px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.pictaffil-image-preview {
    max-height: 300px;
    overflow: auto;
    padding: 10px;
    text-align: center;
}

.pictaffil-image-preview img {
    max-width: 100%;
    height: auto;
}