.prompt-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem;
}

.prompt-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.prompt-hero h1 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.prompt-hero p {
    color: var(--charcoal);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.7;
}

.prompt-upload {
    margin-bottom: 2rem;
}

.prompt-form-card {
    margin-top: 1.25rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(125, 155, 118, 0.15);
}

.prompt-textarea {
    min-height: 140px;
}

.prompt-form-card #btnAnalyze {
    width: 100%;
}

.prompt-result {
    margin-top: 1.5rem;
}

.prompt-result h2 {
    font-size: 1.25rem;
    color: var(--forest);
    margin-bottom: 0;
}

.prompt-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.prompt-result-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.copy-feedback {
    margin-bottom: 1rem;
    color: var(--forest);
    font-size: 0.9rem;
}

.result-textarea {
    min-height: 180px;
    background: rgba(253, 248, 243, 0.85);
}

@media (max-width: 640px) {
    .prompt-page {
        padding: 1.25rem;
    }

    .prompt-form-card,
    .prompt-result .result-card {
        padding: 1.25rem;
    }

    .prompt-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .camera-controls {
        flex-direction: column;
    }

    .camera-controls .btn {
        width: 100%;
    }
}
