/* Public styles for AI SaaS Platform */
.ais-tool-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.ais-tool-form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ais-tool-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ais-tool-form input[type="text"],
.ais-tool-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ais-tool-form button {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.ais-tool-form button:hover {
    background: #005177;
}

.ais-tool-response {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.ais-tool-error {
    color: #dc3545;
    margin-top: 10px;
    padding: 10px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.ais-tool-success {
    color: #28a745;
    margin-top: 10px;
    padding: 10px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
} 