.aitf-tool-container {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.aitf-tool-header h2 {
    margin-top: 0;
    color: #111827;
}

/* Base Styles for Generated Inputs */
.aitf-tool-wrapper input[type="text"],
.aitf-tool-wrapper input[type="number"],
.aitf-tool-wrapper select,
.aitf-tool-wrapper textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.aitf-tool-wrapper button {
    background-color: #2563eb;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.aitf-tool-wrapper button:hover {
    background-color: #1d4ed8;
}

.aitf-tool-result {
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: none; /* Hidden by default */
}

/* Freemium Blocker */
.aitf-upgrade-notice {
    display: none;
    padding: 15px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

/* FAQ Section */
.aitf-faqs {
    margin-top: 40px;
    border-top: 2px solid #f3f4f6;
    padding-top: 20px;
}
.aitf-faqs dt {
    font-weight: 700;
    font-size: 1.1em;
    color: #374151;
    margin-bottom: 5px;
}
.aitf-faqs dd {
    margin-bottom: 20px;
    margin-left: 0;
    color: #4b5563;
}