/* ============================================
   NAAMKAARTEN - Stylesheet
   ============================================ */

.nc-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ---------- Bedieningspaneel ---------- */
.nc-controls {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.nc-controls .form-group { margin: 0; }

.nc-info {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ---------- Monster-toggle ---------- */
.nc-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.nc-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ---------- Range ---------- */
#ncSize { width: 100%; accent-color: var(--primary); }

#ncSizeVal {
    float: right;
    font-weight: 700;
    color: var(--primary);
}

/* ---------- Download ---------- */
.nc-download-btn {
    width: 100%;
    margin-top: 4px;
}

.nc-download-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nc-hint {
    margin: 0;
    font-size: 13px;
    color: var(--text-medium);
    text-align: center;
}

/* ---------- Uitleg ---------- */
.nc-uitleg {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-medium);
}

.nc-uitleg strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.nc-uitleg ol {
    margin: 0;
    padding-left: 18px;
    line-height: 1.6;
}

/* ---------- Voorbeeld ---------- */
.nc-preview {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.nc-preview-stage {
    width: 100%;
    min-height: 320px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.nc-canvas {
    max-width: 100%;
    max-height: 70vh;
    border: 1px solid #E8E8F0;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.nc-preview-empty {
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.nc-preview-empty-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.6;
}

.nc-preview-empty p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* ---------- Voorbeeld-navigatie ---------- */
.nc-preview-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nc-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E0E0EA;
    background: var(--bg-white);
    font-size: 18px;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.15s ease;
}

.nc-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nc-preview-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 160px;
    text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
    .nc-controls { flex-basis: 100%; }
    .nc-preview { flex-basis: 100%; }
}
