/*
Theme Name: GeneratePress Child
Description: Child theme of GeneratePress with Claude form integration
Template: generatepress
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../generatepress/style.css");

/* Claude Form Styles */
.claude-form-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.claude-form-container h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.claude-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.claude-form-container textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
}

.claude-form-container textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 5px rgba(0,124,186,0.3);
}

.claude-form-container button {
    background: #007cba;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.claude-form-container button:hover {
    background: #005a87;
}

.claude-form-container button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.claude-response {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #007cba;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    max-height: 400px;
    overflow-y: auto;
}

.claude-response.error {
    background: #ffeaea;
    border-left-color: #dc3232;
    color: #dc3232;
}

.claude-response.loading {
    background: #e7f3ff;
    border-left-color: #0073aa;
    color: #0073aa;
}

.claude-response h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}
