#ai-3d-generator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    width: 95%;
}

.ai3d-step {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 6px solid #007cba;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ai3d-step h3 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

button:hover {
    opacity: 0.9;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

#generated-image img {
    max-width: 100%;
    height: auto;
}

/* 3D Model Viewer stílusok */
#model-viewer {
    width: 100%;
    height: 400px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

#model-viewer canvas {
    border-radius: 10px !important;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Progress bar stílusok */
#ai3d-loading {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#progress-container {
    position: relative;
    overflow: hidden;
}

#progress-fill {
    background: linear-gradient(90deg, #007cba, #00a8ff);
    border-radius: 10px;
    position: relative;
}

#progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
