.pimi-csv-import-container {
    max-width: 1200px;
}
.pimi-csv-import-step {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccd0d4;
    margin-bottom: 20px;
}
.pimi-csv-example {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pimi-csv-example h3 {
    margin-top: 0;
}
.pimi-csv-example-code {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0;
}
.pimi-command-input-wrapper {
    position: relative;
}
.pimi-suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.pimi-suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pimi-suggestions-list .pimi-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.pimi-suggestions-list .pimi-suggestion:hover,
.pimi-suggestions-list .pimi-suggestion.selected {
    background: #0073aa;
    color: #fff;
}

