#onemeexi-export-form select { min-width: 250px; }
#onemeexi-import-form input[type='text'] { min-width: 250px; }

.onemeexi-admin-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.onemeexi-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    flex: 1;
}

.onemeexi-dropzone {
    border: 2px dashed #b4b9be;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.onemeexi-dropzone:hover {
    border-color: #0073aa;
    background-color: #f7f7f7;
}

.onemeexi-dropzone.dragover {
    border-color: #0073aa;
    background-color: #f0f6fc;
}

.onemeexi-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
    z-index: 9999;
}

.onemeexi-toast.success {
    background: #46b450;
    color: #fff;
}

.onemeexi-toast.error {
    background: #dc3232;
    color: #fff;
}