.saved-prompts-container .prompts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.saved-prompts-container .prompt-item {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #487183;
}

.saved-prompts-container .error {
    color: #dc3232;
    padding: 10px;
    background: #fbeaea;
    border-left: 4px solid #dc3232;
}

.saved-prompts-container .prompt-copy-btn {
    margin: 0;
    order: 1;
    background: #487183;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s, background-color 0.2s;
}

.saved-prompts-container .prompt-copy-btn:hover {
    opacity: 1;
    background: #009ecc;
}

.saved-prompts-container .prompt-copy-btn.copied {
    background: #4CAF50;
}

/* Add dashicons if not already included */
.saved-prompts-container .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.saved-prompts-container .prompt-content {
    flex: 1;
    order: 2;
}