/* 
 * Wat is E-facturatie - Pagina Specifieke Styles
 * Gebruikt kb-base.css en kb-components.css
 */

/* Overview cards */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.overview-card {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.overview-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-icon.peppol {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.overview-icon.bsp {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.overview-icon.edi {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.overview-icon.api {
    background-color: rgba(210, 105, 30, 0.1);
    color: var(--primary);
}

.overview-title {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-marker {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: var(--border);
    z-index: 1;
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.timeline-content h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-duration {
    display: inline-block;
    padding: 3px 10px;
    background-color: rgba(210, 105, 30, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-marker::after {
        display: none;
    }
}
