/* TurfIntel 2.0 Ingestion UI Styles */
:root {
    --pbi-blue: #004a99;
    --research-gray: #f4f4f9;
    --border-color: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--research-gray);
    padding: 20px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1 {
    color: var(--pbi-blue);
    border-bottom: 2px solid var(--pbi-blue);
    padding-bottom: 10px;
    margin-top: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.section {
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}

.section h3 {
    margin-top: 0;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 0.9rem;
}

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

button {
    background: var(--pbi-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.2s;
}

button:hover { opacity: 0.9; }

button.secondary { background: #6c757d; }

.upload-zone {
    border: 2px dashed var(--pbi-blue);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

/* Highlight specifically for PestCalc math fields */
.section[style*="background: #fffdf0"] {
    border-color: #ffeeba;
}