/* Agrillion Core Plugin Styles — supplements theme */

/* ── FORMS ──────────────────────────────────────────────── */
.agrillion-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}
.agrillion-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .agrillion-form .form-row { grid-template-columns: 1fr; }
}

/* ── MARKETPLACE ────────────────────────────────────────── */
.agrillion-marketplace .agrillion-filter-btn.active {
    background: rgba(34,197,94,.12) !important;
    color: #22c55e !important;
    border-color: rgba(34,197,94,.3) !important;
}

/* ── DASHBOARD ──────────────────────────────────────────── */
.sidebar-nav a.active {
    background: rgba(34,197,94,.08);
    color: #22c55e;
}

/* ── STATUS BADGES (admin) ──────────────────────────────── */
.agrillion-status-active   { color: #22c55e; font-weight: 700; }
.agrillion-status-pending  { color: #eab308; font-weight: 700; }
.agrillion-status-rejected { color: #ef4444; font-weight: 700; }
.agrillion-status-inactive { color: #94a3b8; font-weight: 700; }

/* ── ALERTS ─────────────────────────────────────────────── */
.agrillion-form-wrap .alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
}
.agrillion-form-wrap .alert-success {
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.25);
    color: #86efac;
}
.agrillion-form-wrap .alert-error {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.25);
    color: #fca5a5;
}
