.agrinet-container {
    direction: rtl;
    max-width: 920px;
    margin: 24px auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e7ece7;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

.agrinet-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.agrinet-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    background: #f5faf5;
}

.agrinet-header h2 {
    margin: 0 0 6px;
    color: #174b2a;
    font-size: 24px;
    line-height: 1.5;
}

.agrinet-header p {
    margin: 0;
    color: #66756b;
    font-size: 14px;
}

.agrinet-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.agrinet-filters select,
.agrinet-filters button {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
}

.agrinet-filters select {
    padding: 0 12px;
    border: 1px solid #d7e2d7;
    background: #fff;
    color: #1f2d22;
}

.agrinet-filters select:disabled {
    background: #f4f6f4;
    color: #9aa59d;
    cursor: not-allowed;
}

.agrinet-filters button {
    border: none;
    background: #218a45;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.agrinet-filters button:hover:not(:disabled) {
    background: #176d35;
    transform: translateY(-1px);
}

.agrinet-filters button:disabled {
    opacity: 0.75;
    cursor: wait;
}

#results {
    margin-top: 18px;
}

.agrinet-result {
    padding: 16px 18px;
    border-radius: 14px;
    line-height: 1.9;
    font-size: 15px;
}

.agrinet-result h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.agrinet-result p {
    margin: 0;
}

.agrinet-result.success {
    background: #eefaf1;
    border: 1px solid #bee8c8;
    color: #12522b;
}

.agrinet-result.warning {
    background: #fff8e8;
    border: 1px solid #f1d38b;
    color: #6c4a00;
}

.agrinet-result.loading {
    background: #eef5ff;
    border: 1px solid #c7daf8;
    color: #1b4b82;
}

@media (max-width: 760px) {
    .agrinet-container {
        padding: 18px;
    }

    .agrinet-header {
        align-items: flex-start;
    }

    .agrinet-logo {
        width: 58px;
        height: 58px;
    }

    .agrinet-filters {
        grid-template-columns: 1fr;
    }
}
