/* 
 * Styles for the PromptTemplate admin interface
 */

/* Content field styling */
#id_content {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Highlight placeholder patterns */
.placeholder-highlight {
    background-color: #ffffcc;
    color: #333;
    padding: 0 2px;
    border-radius: 2px;
}

/* Style for template status indicators */
.status-draft {
    color: #fd7e14;
    font-weight: bold;
}

.status-active {
    color: #28a745;
    font-weight: bold;
}

.status-archived {
    color: #6c757d;
    font-weight: bold;
    text-decoration: line-through;
}

/* Template testing panel */
.template-test-panel {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

.template-test-panel h3 {
    margin-top: 0;
    color: #495057;
}

.template-test-results {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
    background-color: #fff;
    max-height: 400px;
    overflow-y: auto;
}

/* Token count display */
.token-count {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    text-align: right;
}

.token-count.warning {
    color: #fd7e14;
}

.token-count.danger {
    color: #dc3545;
} 