/* ======================
   Laadscherm
   ====================== */
.stijl-dna-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    break-inside: avoid;
    column-span: all;
}

.stijl-dna-loader-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #e6efe9;
    border-top-color: #1a3c34;
    animation: stijl-dna-spin 0.8s linear infinite;
    margin-bottom: 20px;
}

.stijl-dna-loader-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.stijl-dna-loader-text {
    font-size: 0.95rem;
    color: #777;
}

@keyframes stijl-dna-spin {
    to { transform: rotate(360deg); }
}