/* PromptLab v2 Styles */

body {
    background: #f5f6f8;
}

/* Lander horizontal scroll */
.lander-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px;
}

.lander-card {
    min-width: 450px;
    max-width: 500px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
}

.lander-card iframe {
    width: 100%;
    height: 700px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
}

/* Text response cards */
.result-card {
    border-radius: 8px;
}

.result-card .card-header {
    background: #343a40;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.response-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 600px;
    overflow-y: auto;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Form card */
.card {
    border-radius: 10px;
}

/* Navbar brand */
.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Paste zone for screenshots */
#pasteZone {
    min-height: 100px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    padding: 12px;
}

#pasteZone:focus,
#pasteZone:hover {
    border-color: #0d6efd;
    outline: none;
}

#pasteZone.has-image {
    border-color: #0d6efd;
    background: #fff;
    border-style: solid;
}

/* Scrollbar styling */
.lander-scroll::-webkit-scrollbar {
    height: 8px;
}

.lander-scroll::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

.lander-scroll::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 4px;
}

.lander-scroll::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

/* Loading area */
#loadingArea {
    padding: 40px 0;
}

/* History table */
.table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Role textarea */
#roleText {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Analysis card */
#analysisText {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
}
