/* 
 * DBNA Technische Specs - Pagina Specifieke Styles
 */

/* DBNA variant of technical specs */
.dbna-spec-card {
    background-color: var(--light);
    border-left: 4px solid #17a2b8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 12px 12px 0;
}

.dbna-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
}

/* Schema examples */
.schema-example {
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}
        /* Component boxes */
        .component-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .component-box {
            background-color: var(--light);
            border: 1px solid var(--light-grey);
            border-radius: 12px;
            padding: 25px;
        }

        .component-box h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .component-box ul {
            margin: 0;
            padding-left: 20px;
        }

        .component-box li {
            color: var(--grey);
            margin-bottom: 8px;
            line-height: 1.6;
        }

        /* Code and technical elements */
        .code-block {
            background-color: #f1f3f4;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            overflow-x: auto;
        }

        .tech-specs {
            background-color: var(--light);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 1px solid var(--light-grey);
        }

        .tech-specs h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        /* API endpoints table */
        .api-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .api-table th {
            background-color: var(--secondary);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .api-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--light-grey);
            color: var(--grey);
        }

        .api-table tr:last-child td {
            border-bottom: none;
        }

        .api-table tr:nth-child(even) {
            background-color: var(--light);
        }

        /* Highlight boxes */
        .highlight-box {
            background: linear-gradient(135deg, rgba(210, 105, 30, 0.05) 0%, rgba(23, 55, 82, 0.05) 100%);
            border: 1px solid rgba(210, 105, 30, 0.2);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }

        .highlight-box strong {
            color: var(--secondary);
            display: block;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .highlight-box p {
            color: var(--grey);
            margin-bottom: 15px;
        }

        .highlight-button {
            display: inline-block;
            background-color: var(--primary);
            color: white !important;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .highlight-button:hover {
            background-color: #b85c1a;
            text-decoration: none;
        }

        /* Requirements list */
        .requirements-list {
            background-color: var(--light);
            border-radius: 12px;
            padding: 25px;
            margin: 20px 0;
        }

        .requirements-list ul {
            margin: 0;
            padding-left: 25px;
        }

        .requirements-list li {
            color: var(--grey);
            margin-bottom: 10px;
            line-height: 1.7;
        }