.agri-wrap {
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.agri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.agri-grid.stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.agri-card {
  background: #fff;
  border: 1px solid #dce7dc;
  border-left: 4px solid #3a8b3a;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.agri-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.agri-card h2,
.agri-card h3,
.agri-card h4 {
  margin-top: 0;
}

.agri-btn {
  display: inline-block;
  background: #2f7f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.agri-btn-secondary {
  background: #2a6f9e;
}

.agri-btn-secondary:hover {
  background: #1f5776;
}

.agri-btn:hover {
  background: #245f24;
  color: #fff;
}

.agri-search {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.agri-search input,
.agri-search select,
.agri-card input,
.agri-card select,
.agri-card textarea {
  width: 100%;
  padding: 0.45rem;
  border: 1px solid #cddacd;
  border-radius: 5px;
}

.agri-alert {
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.agri-alert-success {
  background: #e8f8e8;
  border: 1px solid #8dcc8d;
}

.agri-alert-error {
  background: #ffecec;
  border: 1px solid #f2abab;
}

.agri-table {
  width: 100%;
  border-collapse: collapse;
}

.agri-table th,
.agri-table td {
  border: 1px solid #d8e4d8;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}

.agri-message-box,
.agri-review-form {
  margin-top: 0.5rem;
}

.agri-thread {
  max-height: 170px;
  overflow: auto;
  background: #f8fbf8;
  border: 1px solid #e0e9e0;
  border-radius: 6px;
  padding: 0.4rem;
  margin: 0.4rem 0;
}

.agri-muted {
  color: #5d6f5d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .agri-table {
    display: block;
    overflow-x: auto;
  }
}
