/* javascript-to-typescript-converter-online — tool styles scoped to .tool-card */

.tool-card .header h1 { font-size: 28px; margin-bottom: 10px; }
.tool-card .content { padding: 30px; }
.tool-card .converter-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
.tool-card .editor-box {
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
        }
.tool-card .editor-header {
            background: #2d2d2d;
            color: white;
            padding: 12px 20px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.tool-card textarea {
            width: 100%;
            min-height: 400px;
            padding: 20px;
            border: none;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            resize: vertical;
            background: #1e1e1e;
            color: #d4d4d4;
        }
.tool-card .btn {
            padding: 12px 24px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
.tool-card .btn:hover { background: #764ba2; transform: translateY(-2px); }
.tool-card .btn-secondary {
            background: #6c757d;
            padding: 8px 16px;
            font-size: 12px;
        }
.tool-card .btn-secondary:hover { background: #5a6268; }
.tool-card .info-section {
            background: #f9f9f9;
            padding: 30px;
            border-top: 1px solid #eee;
        }
.tool-card .info-section h3 { color: #667eea; margin-bottom: 15px; }
.tool-card .info-section p { color: #666; line-height: 1.8; margin-bottom: 12px; }
@media (max-width: 768px) {
.tool-card .converter-grid { grid-template-columns: 1fr; }
}
.tool-card .seo-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .seo-content .container {
            padding: 0 20px;
        }
.tool-card .seo-content h2, .tool-card .seo-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .seo-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .seo-content ul, .tool-card .seo-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .seo-content li {
            margin-bottom: 8px;
            color: #555;
        }
.tool-card .examples-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .examples-content .container {
            padding: 0 20px;
        }
.tool-card .examples-content h2, .tool-card .examples-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .examples-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .examples-content pre {
            background: #1e1e2e;
            color: #cdd6f4;
            padding: 18px 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 18px;
            font-size: 13px;
            line-height: 1.6;
        }
.tool-card .examples-content code {
            font-family: 'Fira Code', 'Cascadia Code', 'Monaco', 'Menlo', monospace;
        }
.tool-card .examples-content ul, .tool-card .examples-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .examples-content li {
            margin-bottom: 8px;
            color: #555;
        }
