/* System Prompts Component Styles */

/* System Prompts List */
.system-prompts-list {
    margin-bottom: 20px;
}

.system-prompts-list h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.system-prompts-list .list-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.system-prompt-item {
    padding: 10px;
    margin-bottom: 8px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.system-prompt-item:hover {
    background-color: #f0f0f0;
}

.system-prompt-item.selected {
    background-color: #e3f2fd;
    border-color: #2196f3;
}

.system-prompt-item.default {
    border-left: 4px solid #4caf50;
}

.system-prompt-item .name {
    font-weight: bold;
    margin-bottom: 5px;
}

.system-prompt-item .description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

/* System Prompt Editor */
.system-prompt-editor {
    height: 100%;
}

.system-prompt-editor h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.system-prompt-editor .form-group {
    margin-bottom: 15px;
}

.system-prompt-editor label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.system-prompt-editor input[type="text"],
.system-prompt-editor textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.system-prompt-editor textarea {
    min-height: 150px;
    resize: vertical;
}

.system-prompt-editor .checkbox-group {
    display: flex;
    align-items: center;
}

.system-prompt-editor .checkbox-group input {
    margin-right: 8px;
}

.system-prompt-editor .checkbox-group label {
    margin-bottom: 0;
}

.system-prompt-editor .form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.system-prompt-editor button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.system-prompt-editor button[type="submit"] {
    background-color: #4caf50;
    color: white;
}

.system-prompt-editor button.secondary {
    background-color: #f0f0f0;
    color: #333;
}

.system-prompt-editor button.danger {
    background-color: #f44336;
    color: white;
}

.system-prompt-editor button:hover {
    opacity: 0.9;
}

.system-prompt-editor .hidden {
    display: none;
}