/* ===== SCHNELLSTARTER (QUICK START) ===== */
.ce-v6-schnellstarter {
    text-align: center;
}

.ce-v6-schnellstarter-header {
    margin-bottom: 1.5rem;
}

.ce-v6-schnellstarter-header .ce-v6-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ce-v6-title-text {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
}

.ce-v6-subtitle {
    color: #64748b;
    margin: 0 auto;
    max-width: 300px;
}

.ce-v6-avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ce-v6-avatar-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ce-v6-avatar-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-4px);
}

.ce-v6-avatar-card.selected {
    border-color: #8b5cf6;
    background: #f5f3ff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.1), 0 4px 6px -2px rgba(139, 92, 246, 0.05);
}

.ce-v6-avatar-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.ce-v6-avatar-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #334155;
}

.ce-v6-username-section {
    margin-top: 1.5rem;
    text-align: left;
}

.ce-v6-username-section label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    display: block;
}

.ce-v6-username-input-group {
    display: flex;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0.25rem;
}

.ce-v6-username-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem;
    font-size: 1rem;
    color: #0f172a;
}

.ce-v6-regenerate-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 8px;
    padding: 0 1rem;
    font-weight: 600;
}
.ce-v6-regenerate-btn:hover {
    background: #e2e8f0;
}

.ce-v6-schnellstarter-actions {
    margin-top: 2rem;
}

.ce-v6-start-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #6b46c1);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(107, 70, 193, 0.2), 0 4px 6px -2px rgba(107, 70, 193, 0.1);
}
.ce-v6-start-btn:hover {
    transform: translateY(-2px);
}
