/* Styles for the Tech Page Testing Dashboard */
.tech-dashboard-container {
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb;
    color: #111827;
}

.tech-dashboard-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.tech-dashboard-header h1 {
    font-size: 2em;
    font-weight: 700;
}

.tech-dashboard-header p {
    font-size: 1.1em;
    color: #6b7280;
}

.test-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.full-width-case {
    grid-column: 1 / -1;
}

.models-prototype-container {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px dashed #ccc;
    background-color: #f1f1f1;
    min-height: 500px;
}

.test-case {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.test-case h2 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.test-case p {
    font-size: 0.9em;
    color: #6b7280;
    margin-bottom: 1rem;
    min-height: 40px;
}

.tech-button {
    background-color: #0d6efd;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.tech-button:hover {
    background-color: #0b5ed7;
}

.output-box {
    background-color: #1f2937;
    color: #f9fafb;
    border: 1px solid #4b5563;
    padding: 1rem;
    margin-top: 1rem;
    min-height: 50px;
    white-space: pre-wrap;
    font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
    font-size: 0.875em;
    border-radius: 0.375rem;
}
