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

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

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

.document-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.1);
}

.doc-type-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.doc-type-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.doc-type-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.doc-type-code {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(210, 105, 30, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.8rem;
    font-family: monospace;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .document-types-grid {
        grid-template-columns: 1fr;
    }
}
        /* Document grid - aangepast naar template stijl */
        .document-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .document-item {
            background-color: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 12px 12px 0;
            transition: all 0.3s ease;
        }

        .document-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(210, 105, 30, 0.1);
        }

        .document-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .document-icon {
            width: 35px;
            height: 35px;
            background-color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }

        .document-title {
            font-weight: 600;
            color: var(--secondary);
            margin: 0;
            font-size: 1rem;
        }

        .doc-type-badge {
            background: var(--primary);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-left: auto;
        }

        .document-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .document-features li {
            color: var(--grey);
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .check-icon {
            color: #28a745;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Standards table - aangepast naar template stijl */
        .standards-table {
            background: var(--light);
            border-radius: 12px;
            overflow: hidden;
            border-left: 4px solid var(--primary);
            margin-top: 25px;
        }

        .standards-table table {
            width: 100%;
            border-collapse: collapse;
        }

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

        .standards-table td {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border);
        }

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

        .standards-table tr:hover {
            background: rgba(210, 105, 30, 0.05);
        }

        .version-badge {
            display: inline-block;
            padding: 4px 8px;
            background: #28a745;
            color: white;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .deprecated-badge {
            display: inline-block;
            padding: 4px 8px;
            background: #dc3545;
            color: white;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Process flow - aangepast naar template stijl */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .step-item {
            background-color: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 12px 12px 0;
            position: relative;
            text-align: center;
        }

        .step-number {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
        }

        .step-title {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 1rem;
            margin-top: 15px;
        }

        .step-desc {
            color: var(--grey);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Highlight box */
        .highlight-box {
            background-color: rgba(210, 105, 30, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .highlight-box strong {
            color: var(--secondary);
            display: block;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        /* Lijsten met alleen vinkjes (geen oranje bullets) */
.provider-features,
.checklist,
.check-list,
.document-features {  /* ← VOEG DEZE TOE */
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.provider-features li,
.checklist li,
.check-list li,
.document-features li {  /* ← VOEG DEZE TOE */
    padding-left: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.provider-features li::before,
.checklist li::before,
.check-list li::before,
.document-features li::before {  /* ← VOEG DEZE TOE */
    display: none !important; /* Override entry-content bullets */
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
    min-width: 16px;
    margin-top: 2px;
}