/* Pasture Portion — minimal styles. */

:root {
    --pp-green:  #4a7c2e;
    --pp-cream:  #f7f3e8;
    --pp-brown:  #6b4423;
    --pp-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pp-body         { background: var(--pp-cream); }
.pp-navbar       { background: white; border-bottom: 1px solid #e2dccc; box-shadow: var(--pp-shadow); }
.pp-brand        { color: var(--pp-green); font-weight: 600; }
.pp-tenant       { color: #888; font-size: 0.875rem; }
.pp-main         { min-height: calc(100vh - 130px); }
.pp-footer       { background: white; border-top: 1px solid #e2dccc; }

.pp-module-shell { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; }
.pp-sidebar      { background: white; border-radius: 0.5rem; padding: 0.75rem 0; box-shadow: var(--pp-shadow); }
.pp-sidebar .nav-link            { color: #444; padding: 0.5rem 1rem; }
.pp-sidebar .nav-link:hover      { background: #f3efe2; }
.pp-sidebar .nav-link.active     { background: var(--pp-green); color: white; }
.pp-sidebar .nav-link i          { width: 1.25rem; margin-right: 0.5rem; }

.pp-public       { background: #fff; }
