.agritech-dashboard {
    /* Add some basic styling for the dashboard page */
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.agritech-dashboard .dashboard-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.agritech-dashboard h1.entry-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #77a464; /* Agri green accent */
    color: #333;
}

.agritech-dashboard h2 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #444;
}
.agritech-dashboard h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: #555;
}
.agritech-dashboard h4 {
    margin-top: 0;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.agritech-dashboard ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
.agritech-dashboard ul li {
    margin-bottom: 8px;
}
.agritech-dashboard ul li a {
    text-decoration: none;
    color: #77a464;
}
.agritech-dashboard ul li a:hover {
    text-decoration: underline;
}


.agritech-form-container {
    padding: 20px;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.agritech-form-container h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.agritech-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.agritech-form-container input[type="text"],
.agritech-form-container select,
.agritech-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.agritech-form-container input[type="submit"].button,
.agritech-dashboard .button {
    background-color: #77a464; /* Agri green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    display: inline-block;
}

.agritech-form-container input[type="submit"].button:hover,
.agritech-dashboard .button:hover {
    background-color: #5d8c4e; /* Darker green */
}

/* Notices */
.agritech-notice {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.95em;
}
.agritech-notice p {
    margin: 0;
    padding: 0;
}
.agritech-notice-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.agritech-notice-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.agritech-notice-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.agritech-notice-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.required { color: red; }

/* NEW styles for Single Farm Page */
.farm-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .farm-details-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.farm-sidebar-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.farm-sidebar-details h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.farm-sidebar-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.farm-sidebar-details ul li {
    margin-bottom: 15px;
}
.farm-sidebar-details ul li strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}
.farm-sidebar-details .term-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}
.farm-sidebar-details .term-list li {
    display: inline-block;
    background-color: #e7f1e4;
    color: #5d8c4e;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.farm-related-info {
    margin-top: 30px;
}
.farm-related-info ul {
    list-style: disc;
    margin-left: 20px;
}

.entry-footer {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}