/* snowflake-id-example — tool styles scoped to .tool-card */

.tool-card .header h1 { font-size: 28px; margin-bottom: 10px; }
.tool-card .content { padding: 30px; }
.tool-card .example-card {
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #667eea;
            margin-bottom: 20px;
        }
.tool-card .example-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
.tool-card .example-icon { font-size: 24px; }
.tool-card .example-title { font-size: 20px; font-weight: 600; color: #667eea; }
.tool-card .example-id {
            background: white;
            padding: 15px;
            border-radius: 8px;
            font-family: monospace;
            font-size: 18px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 15px;
            word-break: break-all;
        }
.tool-card .example-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }
.tool-card .detail-item {
            background: white;
            padding: 12px;
            border-radius: 6px;
        }
.tool-card .detail-label { font-size: 11px; color: #666; margin-bottom: 4px; text-transform: uppercase; }
.tool-card .detail-value { font-weight: 600; color: #1a202c; font-size: 14px; }
.tool-card .decode-btn {
            background: #667eea;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 10px;
        }
.tool-card .decode-btn:hover { background: #764ba2; }
.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; }
.tool-card .code-block { background: #1e1e1e; border-radius: 8px; overflow: hidden; margin: 20px 0; }
.tool-card .code-block pre { margin: 0; padding: 20px; overflow-x: auto; }
.tool-card .code-block code { background: transparent; padding: 0; color: #d4d4d4; display: block; line-height: 1.6; font-family: 'Courier New', monospace; }
.tool-card .code-header { background: #2d2d2d; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; }
.tool-card .code-header span { color: #9cdcfe; font-size: 12px; font-weight: 600; }
.tool-card .code-header button { background: #667eea; color: white; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; }
.tool-card .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
.tool-card .comparison-table th {
            background: #667eea;
            color: white;
            padding: 12px;
            text-align: left;
            font-weight: 600;
        }
.tool-card .comparison-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
.tool-card .comparison-table tr:last-child td { border-bottom: none; }
.tool-card .comparison-table tr:hover { background: #f8f9fa; }
.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;
        }
