/* Container & Algemeen */
.kp-diensten-wrapper {
    margin: 40px auto;
    max-width: 1200px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #334155;
    line-height: 1.5;
}

.kp-header {
    text-align: center;
    margin-bottom: 40px;
}

.kp-header h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 700;
}

.kp-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout */
.kp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* Kaart Styling */
.kp-location-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.kp-location-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

/* Tabel Styling */
.kp-table-responsive {
    overflow-x: auto;
}

.kp-service-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.kp-service-table thead th {
    text-align: left;
    padding: 12px;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.kp-service-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

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

/* Kolom specifieke CSS */
.kp-col-date {
    width: 30%;
    color: #1e293b;
}

.kp-time {
    display: block;
    font-weight: 600;
    color: #475569;
}

.kp-description {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
    line-height: 1.2;
}

.kp-col-preacher {
    color: #1e293b;
}

/* Foutmeldingen & Empty states */
.kp-error, .kp-empty-state {
    padding: 20px;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
    border-radius: 8px;
    text-align: center;
}

/* Mobile Tweaks */
@media (max-width: 640px) {
    .kp-services-grid {
        grid-template-columns: 1fr;
    }
    
    .kp-location-card {
        padding: 16px;
    }

    .kp-service-table {
        font-size: 0.85rem;
    }
}