   body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #e3f2fd;
            padding: 40px 20px;
            margin: 0;
        }
        
        h1 {
            text-align: center;
            color: #004d40;
            margin-bottom: 40px;
        }
        
 /* Algemene reset en basisstijlen blijven gelijk, hieronder alleen de tabel-aanpassingen */

.table-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0; /* Zorg dat cellen direct tegen elkaar zitten */
}

th {
    background: linear-gradient(135deg, #009688 0%, #00796b 100%);
    color: #fff;
    padding: 12px 20px; /* Minder verticale padding */
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

td {
    padding: 10px 20px; /* Minder padding voor compactere rijen */
    border-bottom: 1px solid #e0f2f1;
    color: #004d40;
    vertical-align: middle;
}

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

tr:nth-child(even) {
    background-color: #f5fcfc;
}

tr:hover {
    background-color: #e0f2f1;
}

.step-title {
    font-weight: 600;
    font-size: 1rem; /* Iets kleiner voor compactheid */
    color: #004d40;
    margin-bottom: 2px;
}

.step-desc {
    color: #546e7a;
    font-size: 0.85rem; /* Kleinere lettergrootte */
    line-height: 1.3;
}

.sub-step {
    background-color: #f0f7f7;
    padding-left: 10px; /* Minder inspringing */
}

.sub-step .step-title {
    font-size: 0.95rem;
}

.sub-step .step-desc {
    font-size: 0.8rem;
}

/* Responsieve aanpassingen */
@media (max-width: 600px) {
    th, td {
        padding: 8px 10px;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-desc {
        font-size: 0.75rem;
    }
    
    .sub-step {
        padding-left: 5px;
    }
}
        
        @media (max-width: 600px) {
            th, td {
                padding: 15px 10px;
            }
            
            .sub-step {
                padding-left: 10px;
            }
        }