/* Generating Page Styles */

.generating-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.generating-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.logo-animation {
    margin-bottom: 40px;
}

.logo-animation svg {
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.generating-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.generating-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 400px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    background: #10b981;
    transform: scale(1.1);
}

.progress-step span {
    font-size: 16px;
    font-weight: 500;
}

/* Add error message styles */
.error-message {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-message p {
    color: #c33;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.retry-btn {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.retry-btn:hover {
    background-color: #c53030;
}

.retry-btn:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .generating-title {
        font-size: 36px;
    }
    
    .generating-subtitle {
        font-size: 18px;
    }
    
    .generating-content {
        padding: 20px;
    }
    
    .logo-animation svg {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .generating-title {
        font-size: 28px;
    }
    
    .generating-subtitle {
        font-size: 16px;
    }
    
    .progress-steps {
        align-items: center;
        text-align: center;
    }
    
    .progress-step {
        flex-direction: column;
        gap: 8px;
    }
} 