/* 
 * DBNA Document Types - Pagina Specifieke Styles
 */

/* Inherited from peppol-document-types but with DBNA specific variants */
.dbna-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.dbna-type-card {
    background-color: var(--light);
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.dbna-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.1);
}

@media (max-width: 768px) {
    .dbna-types-grid {
        grid-template-columns: 1fr;
    }
}
        /* Feature highlights */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .feature-card {
            background: linear-gradient(135deg, var(--light) 0%, white 100%);
            border: 1px solid var(--light-grey);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

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

        .feature-card p {
            color: var(--grey);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Document types */
        .doc-type-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .doc-type-card {
            background-color: var(--light);
            border: 1px solid var(--light-grey);
            border-radius: 12px;
            padding: 20px;
            position: relative;
        }

        .doc-type-card.most-used::before {
            content: 'Meest Gebruikt';
            position: absolute;
            top: -10px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

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

        .doc-type-card ul {
            margin: 0;
            padding-left: 20px;
        }

        .doc-type-card li {
            color: var(--grey);
            margin-bottom: 6px;
            font-size: 0.9rem;
        }

        /* Standards table */
        .standards-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);
        }

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

        .standards-table td {
            padding: 12px;
            border-bottom: 1px solid var(--light-grey);
            color: var(--grey);
            font-size: 0.85rem;
        }

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

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

        /* Status badges */
        .status-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .status-active {
            background-color: var(--success);
            color: white;
        }

        .status-coming {
            background-color: var(--warning);
            color: white;
        }

        .status-development {
            background-color: var(--info);
            color: white;
        }

        /* Identifier schemes table */
        .identifier-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);
        }

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

        .identifier-table td {
            padding: 12px 10px;
            border-bottom: 1px solid var(--light-grey);
            color: var(--grey);
            font-size: 0.85rem;
        }

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

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

        .identifier-table code {
            background-color: #f1f3f4;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.8rem;
        }

        /* Process flow */
        .process-flow {
            background-color: var(--light);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .process-step {
            flex: 1;
            min-width: 120px;
            text-align: center;
        }

        .process-step-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: white;
            font-size: 24px;
        }

        .process-step-title {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .process-step-desc {
            color: var(--grey);
            font-size: 0.8rem;
        }

        .process-arrow {
            color: var(--primary);
            font-size: 1.5rem;
            flex: 0 0 auto;
        }

.process-arrow {
            color: var(--primary);
            font-size: 1.5rem;
            flex: 0 0 auto;
        }