/* il-prompt-display.css */

.il-styled-prompt {
    background-color: #1e1e1e !important;
    color: #d4d4d4 !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    font-family: 'Consolas', 'Monaco', 'Courier New', Courier, monospace !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    overflow-x: auto !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    white-space: pre-wrap !important;
    /* Wrap lines */
}

.il-prompt-actions-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: -10px;
    /* Pull it slightly up towards the text block */
}

.il-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none !important;
    border: none;
    line-height: 1.5;
}

.il-btn svg {
    margin-right: 6px;
    width: 16px;
    height: 16px;
}

.il-btn-copy {
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.il-btn-copy:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.il-btn-copy.copied {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.il-btn-save {
    background-color: #2563eb;
    color: white !important;
}

.il-btn-save:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}