/* CSS FOR GUTENBERG STARTS HERE */

.flex-file-manager-block-editor {
    box-sizing: border-box;
    border: 1px solid #000;
    padding: 15px;
    border-radius: 10px;
}



/* File Preview */

.file-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    padding: 0;
}

.file-preview {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 10px;
}

.file-preview h3 {
    margin-top: 0;
}

.img-preview {
    border-radius: 5px;
    object-fit: cover !important;
}

.file-preview img {
    width: 100%;
    margin-bottom: 10px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    height: fit-content;
}

.file-details {
    font-size: 14px;
    margin: 0;
}