.ai-helper-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ai-helper-container h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.ai-helper-container .intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1em;
}

.ai-tool-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ai-tool-card h3 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.ai-tool-card p {
    color: #555;
    margin-bottom: 15px;
}

.ai-tool-card textarea,
.ai-tool-card input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.ai-tool-card button.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.ai-tool-card button.btn-primary:hover {
    background-color: #0056b3;
}

.ai-tool-card button.btn-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.ai-response-area {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9f7ff;
    border: 1px solid #cceeff;
    border-radius: 5px;
    color: #333;
    min-height: 50px;
}
.ai-response-area p {
    margin: 0;
    font-style: italic;
    color: #0056b3;
}